@microsoft/msgraph-sdk-groups 1.0.0-preview.55 → 1.0.0-preview.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +186 -4
  2. package/groups/index.d.ts +3 -3
  3. package/groups/item/calendar/calendarView/item/exceptionOccurrences/index.d.ts +3 -3
  4. package/groups/item/calendar/calendarView/item/exceptionOccurrences/item/index.d.ts +3 -3
  5. package/groups/item/calendar/calendarView/item/exceptionOccurrences/item/instances/index.d.ts +3 -3
  6. package/groups/item/calendar/calendarView/item/exceptionOccurrences/item/instances/item/index.d.ts +3 -3
  7. package/groups/item/calendar/calendarView/item/instances/index.d.ts +3 -3
  8. package/groups/item/calendar/calendarView/item/instances/item/exceptionOccurrences/index.d.ts +3 -3
  9. package/groups/item/calendar/calendarView/item/instances/item/exceptionOccurrences/item/index.d.ts +3 -3
  10. package/groups/item/calendar/calendarView/item/instances/item/index.d.ts +3 -3
  11. package/groups/item/calendar/events/item/exceptionOccurrences/index.d.ts +3 -3
  12. package/groups/item/calendar/events/item/exceptionOccurrences/item/index.d.ts +3 -3
  13. package/groups/item/calendar/events/item/exceptionOccurrences/item/instances/index.d.ts +3 -3
  14. package/groups/item/calendar/events/item/exceptionOccurrences/item/instances/item/index.d.ts +3 -3
  15. package/groups/item/calendar/events/item/instances/index.d.ts +3 -3
  16. package/groups/item/calendar/events/item/instances/item/exceptionOccurrences/index.d.ts +3 -3
  17. package/groups/item/calendar/events/item/instances/item/exceptionOccurrences/item/index.d.ts +3 -3
  18. package/groups/item/calendar/events/item/instances/item/index.d.ts +3 -3
  19. package/groups/item/calendarView/item/exceptionOccurrences/index.d.ts +3 -3
  20. package/groups/item/calendarView/item/exceptionOccurrences/item/index.d.ts +3 -3
  21. package/groups/item/calendarView/item/exceptionOccurrences/item/instances/index.d.ts +3 -3
  22. package/groups/item/calendarView/item/exceptionOccurrences/item/instances/item/index.d.ts +3 -3
  23. package/groups/item/calendarView/item/instances/index.d.ts +3 -3
  24. package/groups/item/calendarView/item/instances/item/exceptionOccurrences/index.d.ts +3 -3
  25. package/groups/item/calendarView/item/instances/item/exceptionOccurrences/item/index.d.ts +3 -3
  26. package/groups/item/calendarView/item/instances/item/index.d.ts +3 -3
  27. package/groups/item/conversations/item/index.d.ts +1 -1
  28. package/groups/item/events/item/exceptionOccurrences/index.d.ts +3 -3
  29. package/groups/item/events/item/exceptionOccurrences/item/index.d.ts +3 -3
  30. package/groups/item/events/item/exceptionOccurrences/item/instances/index.d.ts +3 -3
  31. package/groups/item/events/item/exceptionOccurrences/item/instances/item/index.d.ts +3 -3
  32. package/groups/item/events/item/instances/index.d.ts +3 -3
  33. package/groups/item/events/item/instances/item/exceptionOccurrences/index.d.ts +3 -3
  34. package/groups/item/events/item/instances/item/exceptionOccurrences/item/index.d.ts +3 -3
  35. package/groups/item/events/item/instances/item/index.d.ts +3 -3
  36. package/groups/item/team/schedule/timeCards/clockIn/index.d.ts +4 -0
  37. package/groups/item/team/schedule/timeCards/clockIn/index.d.ts.map +1 -1
  38. package/groups/item/team/schedule/timeCards/clockIn/index.js +2 -0
  39. package/groups/item/team/schedule/timeCards/clockIn/index.js.map +1 -1
  40. package/groups/item/threads/item/posts/index.d.ts +4 -4
  41. package/package.json +2 -2
  42. package/tsconfig.tsbuildinfo +1 -1
package/README.md CHANGED
@@ -1,11 +1,193 @@
1
1
  # `@microsoft/msgraph-sdk-groups`
2
2
 
3
- > TODO: description
3
+ Get started with the Microsoft Graph SDK for TypeScript by integrating the [Microsoft Graph API](https://learn.microsoft.com/graph/overview) into your TypeScript application!
4
4
 
5
- ## Usage
5
+ This package provides a fluent API for interacting with Microsoft Graph administrative functions.
6
6
 
7
+ > [!NOTE]
8
+ > This package allows you to build applications using the [v1.0](https://learn.microsoft.com/graph/use-the-api#version) of Microsoft Graph. If you want to try the latest Microsoft Graph APIs, use our [beta SDK](https://github.com/microsoftgraph/msgraph-beta-sdk-typescript) instead.
9
+
10
+ ## 1. Installation
11
+
12
+ To install the package, use npm:
13
+
14
+ ```shell
15
+ # this will install the authentication provider for Azure Identity / Microsoft Entra
16
+ npm install @microsoft/kiota-authentication-azure @azure/identity
17
+ # this will install the fluent API package for the administrative API paths
18
+ npm install @microsoft/msgraph-sdk-groups
19
+ ```
20
+
21
+ ## 2. Getting started
22
+
23
+ > Note: we are working to add the getting started information for Typescript to our public documentation, in the meantime the following sample should help you getting started.
24
+
25
+ ### 2.1 Register your application
26
+
27
+ Register your application by following the steps at [Register your app with the Microsoft Identity Platform](https://learn.microsoft.com/graph/auth-register-app-v2).
28
+
29
+ ### 2.2 Create an AuthenticationProvider object
30
+
31
+ An instance of the **GraphServiceClient** class handles building client. To create a new instance of this class, you need to provide an instance of **AuthenticationProvider**, which can authenticate requests to Microsoft Graph.
32
+
33
+ <!-- TODO restore that and remove the snippets below once the SDK hits GA and the public documentation has been updated -->
34
+ <!-- For an example of how to get an authentication provider, see [choose a Microsoft Graph authentication provider](https://learn.microsoft.com/graph/sdks/choose-authentication-providers?tabs=typescript). -->
35
+
36
+ #### 2.2.1 Authorization Code Provider
37
+
38
+ ```TypeScript
39
+ // @azure/identity
40
+ const credential = new AuthorizationCodeCredential(
41
+ 'YOUR_TENANT_ID',
42
+ 'YOUR_CLIENT_ID',
43
+ 'YOUR_CLIENT_SECRET',
44
+ 'AUTHORIZATION_CODE',
45
+ 'REDIRECT_URL',
46
+ );
47
+
48
+ // @microsoft/kiota-authentication-azure
49
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
50
+ ```
51
+
52
+ #### 2.2.2 Client Credentials Provider
53
+
54
+ ##### With a certificate
55
+
56
+ ```TypeScript
57
+ // @azure/identity
58
+ const credential = new ClientCertificateCredential(
59
+ 'YOUR_TENANT_ID',
60
+ 'YOUR_CLIENT_ID',
61
+ 'YOUR_CERTIFICATE_PATH',
62
+ );
63
+
64
+ // @microsoft/kiota-authentication-azure
65
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
66
+ ```
67
+
68
+ ##### With a secret
69
+
70
+ ```TypeScript
71
+ // @azure/identity
72
+ const credential = new ClientSecretCredential(
73
+ 'YOUR_TENANT_ID',
74
+ 'YOUR_CLIENT_ID',
75
+ 'YOUR_CLIENT_SECRET',
76
+ );
77
+
78
+ // @microsoft/kiota-authentication-azure
79
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
80
+ ```
81
+
82
+ #### 2.2.3 On-behalf-of provider
83
+
84
+ ```TypeScript
85
+ // @azure/identity
86
+ const credential = new OnBehalfOfCredential({
87
+ tenantId: 'YOUR_TENANT_ID',
88
+ clientId: 'YOUR_CLIENT_ID',
89
+ clientSecret: 'YOUR_CLIENT_SECRET',
90
+ userAssertionToken: 'JWT_TOKEN_TO_EXCHANGE',
91
+ });
92
+
93
+ // @microsoft/kiota-authentication-azure
94
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["https://graph.microsoft.com/.default"]);
95
+ ```
96
+
97
+ #### 2.2.4 Device code provider
98
+
99
+ ```TypeScript
100
+ // @azure/identity
101
+ const credential = new DeviceCodeCredential({
102
+ tenantId: 'YOUR_TENANT_ID',
103
+ clientId: 'YOUR_CLIENT_ID',
104
+ userPromptCallback: (info) => {
105
+ console.log(info.message);
106
+ },
107
+ });
108
+
109
+ // @microsoft/kiota-authentication-azure
110
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
111
+ ```
112
+
113
+ #### 2.2.5 Interactive provider
114
+
115
+ ```TypeScript
116
+ // @azure/identity
117
+ const credential = new InteractiveBrowserCredential({
118
+ tenantId: 'YOUR_TENANT_ID',
119
+ clientId: 'YOUR_CLIENT_ID',
120
+ redirectUri: 'http://localhost',
121
+ });
122
+
123
+ // @microsoft/kiota-authentication-azure
124
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
7
125
  ```
8
- const msgraphSdkJavascriptGroups = require('@microsoft/msgraph-sdk-groups');
9
126
 
10
- // TODO: DEMONSTRATE API
127
+ #### 2.2.6 Username/password provider
128
+
129
+ ```TypeScript
130
+ // @azure/identity
131
+ const credential = new UsernamePasswordCredential(
132
+ 'YOUR_TENANT_ID',
133
+ 'YOUR_CLIENT_ID',
134
+ 'YOUR_USER_NAME',
135
+ 'YOUR_PASSWORD',
136
+ );
137
+
138
+ // @microsoft/kiota-authentication-azure
139
+ const authProvider = new AzureIdentityAuthenticationProvider(credential, ["User.Read"]);
140
+ ```
141
+
142
+ ### 2.3 Get a Graph Service Client Adapter object
143
+
144
+ You must get a **GraphServiceClient** object to make requests against the service.
145
+
146
+ ```typescript
147
+ const requestAdapter = new GraphRequestAdapter(authProvider);
148
+ const graphServiceClient = createGraphServiceClient(requestAdapter);
149
+ ```
150
+
151
+ ## 3. Make requests against the service
152
+
153
+ After you have a **GraphServiceClient** that is authenticated, you can begin making calls against the service. The requests against the service look like our [REST API](https://learn.microsoft.com/graph/api/overview?view=graph-rest-1.0).
154
+
155
+ ### 3.1 Get user's detailed information
156
+
157
+ To retrieve the user's detailed information:
158
+
159
+ ```typescript
160
+ import { createGraphServiceClient, GraphRequestAdapter } from "@microsoft/msgraph-sdk";
161
+ import "@microsoft/msgraph-sdk-groups"
162
+
163
+ const requestAdapter = new GraphRequestAdapter(authProvider);
164
+ const graphServiceClient = createGraphServiceClient(requestAdapter);
165
+
166
+ const groups = graphServiceClient.groups.get();
11
167
  ```
168
+
169
+ ## 4. Documentation
170
+
171
+ For more detailed documentation, see:
172
+
173
+ * [Overview](https://learn.microsoft.com/graph/overview)
174
+ * [Collections](https://learn.microsoft.com/graph/sdks/paging)
175
+ * [Making requests](https://learn.microsoft.com/graph/sdks/create-requests)
176
+ * [Known issues](https://github.com/MicrosoftGraph/msgraph-sdk-typescript/issues)
177
+ * [Contributions](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/CONTRIBUTING.md)
178
+
179
+ ## 5. Issues
180
+
181
+ For known issues, see [issues](https://github.com/MicrosoftGraph/msgraph-sdk-typescript/issues).
182
+
183
+ ## 6. Contributions
184
+
185
+ The Microsoft Graph SDK is open for contribution. To contribute to this project, see [Contributing](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/CONTRIBUTING.md).
186
+
187
+ ## 7. License
188
+
189
+ Licensed under the [MIT license](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/LICENSE).
190
+
191
+ ## 8. Third-party notices
192
+
193
+ [Third-party notices](https://github.com/microsoftgraph/msgraph-sdk-typescript/blob/main/LICENSE)
package/groups/index.d.ts CHANGED
@@ -45,12 +45,12 @@ export interface GroupsRequestBuilder extends BaseRequestBuilder<GroupsRequestBu
45
45
  */
46
46
  get(requestConfiguration?: RequestConfiguration<GroupsRequestBuilderGetQueryParameters> | undefined): Promise<GroupCollectionResponse | undefined>;
47
47
  /**
48
- * Create a new group object if it doesn't exist, or update the properties of an existing group object.You can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see the Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option.
48
+ * Create a new group as specified in the request body. You can create the following types of groups: This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option.
49
49
  * @param body The request body
50
50
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
51
51
  * @returns {Promise<Group>}
52
52
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
53
- * @see {@link https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0|Find more info here}
53
+ * @see {@link https://learn.microsoft.com/graph/api/group-post-groups?view=graph-rest-1.0|Find more info here}
54
54
  */
55
55
  post(body: Group, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Group | undefined>;
56
56
  /**
@@ -60,7 +60,7 @@ export interface GroupsRequestBuilder extends BaseRequestBuilder<GroupsRequestBu
60
60
  */
61
61
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<GroupsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
62
62
  /**
63
- * Create a new group object if it doesn't exist, or update the properties of an existing group object.You can create or update the following types of group: By default, this operation returns only a subset of the properties for each group. For a list of properties that are returned by default, see the Properties section of the group resource. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option.
63
+ * Create a new group as specified in the request body. You can create the following types of groups: This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. To get properties that are not returned by default, do a GET operation and specify the properties in a $select OData query option.
64
64
  * @param body The request body
65
65
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
66
66
  * @returns {RequestInformation}
@@ -22,21 +22,21 @@ export interface ExceptionOccurrencesRequestBuilder extends BaseRequestBuilder<E
22
22
  */
23
23
  byEventId1(eventId1: string): EventItemRequestBuilder;
24
24
  /**
25
- * Get exceptionOccurrences from groups
25
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * Get exceptionOccurrences from groups
32
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * Get exceptionOccurrences from groups
39
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
40
40
  */
41
41
  export interface ExceptionOccurrencesRequestBuilderGetQueryParameters {
42
42
  /**
@@ -65,21 +65,21 @@ export interface EventItemRequestBuilder extends BaseRequestBuilder<EventItemReq
65
65
  */
66
66
  get tentativelyAccept(): TentativelyAcceptRequestBuilder;
67
67
  /**
68
- * Get exceptionOccurrences from groups
68
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
69
69
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
70
70
  * @returns {Promise<Event>}
71
71
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
72
72
  */
73
73
  get(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): Promise<Event | undefined>;
74
74
  /**
75
- * Get exceptionOccurrences from groups
75
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
76
76
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
77
77
  * @returns {RequestInformation}
78
78
  */
79
79
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
80
80
  }
81
81
  /**
82
- * Get exceptionOccurrences from groups
82
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
83
83
  */
84
84
  export interface EventItemRequestBuilderGetQueryParameters {
85
85
  /**
@@ -22,21 +22,21 @@ export interface InstancesRequestBuilder extends BaseRequestBuilder<InstancesReq
22
22
  */
23
23
  byEventId2(eventId2: string): EventItemRequestBuilder;
24
24
  /**
25
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
25
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
32
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
39
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
40
40
  */
41
41
  export interface InstancesRequestBuilderGetQueryParameters {
42
42
  /**
@@ -60,21 +60,21 @@ export interface EventItemRequestBuilder extends BaseRequestBuilder<EventItemReq
60
60
  */
61
61
  get tentativelyAccept(): TentativelyAcceptRequestBuilder;
62
62
  /**
63
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
63
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
64
64
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
65
65
  * @returns {Promise<Event>}
66
66
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
67
67
  */
68
68
  get(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): Promise<Event | undefined>;
69
69
  /**
70
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
70
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
71
71
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
72
72
  * @returns {RequestInformation}
73
73
  */
74
74
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
75
75
  }
76
76
  /**
77
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
77
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
78
78
  */
79
79
  export interface EventItemRequestBuilderGetQueryParameters {
80
80
  /**
@@ -22,21 +22,21 @@ export interface InstancesRequestBuilder extends BaseRequestBuilder<InstancesReq
22
22
  */
23
23
  byEventId1(eventId1: string): EventItemRequestBuilder;
24
24
  /**
25
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
25
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
32
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
39
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
40
40
  */
41
41
  export interface InstancesRequestBuilderGetQueryParameters {
42
42
  /**
@@ -22,21 +22,21 @@ export interface ExceptionOccurrencesRequestBuilder extends BaseRequestBuilder<E
22
22
  */
23
23
  byEventId2(eventId2: string): EventItemRequestBuilder;
24
24
  /**
25
- * Get exceptionOccurrences from groups
25
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * Get exceptionOccurrences from groups
32
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * Get exceptionOccurrences from groups
39
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
40
40
  */
41
41
  export interface ExceptionOccurrencesRequestBuilderGetQueryParameters {
42
42
  /**
@@ -60,21 +60,21 @@ export interface EventItemRequestBuilder extends BaseRequestBuilder<EventItemReq
60
60
  */
61
61
  get tentativelyAccept(): TentativelyAcceptRequestBuilder;
62
62
  /**
63
- * Get exceptionOccurrences from groups
63
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
64
64
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
65
65
  * @returns {Promise<Event>}
66
66
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
67
67
  */
68
68
  get(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): Promise<Event | undefined>;
69
69
  /**
70
- * Get exceptionOccurrences from groups
70
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
71
71
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
72
72
  * @returns {RequestInformation}
73
73
  */
74
74
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
75
75
  }
76
76
  /**
77
- * Get exceptionOccurrences from groups
77
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
78
78
  */
79
79
  export interface EventItemRequestBuilderGetQueryParameters {
80
80
  /**
@@ -65,21 +65,21 @@ export interface EventItemRequestBuilder extends BaseRequestBuilder<EventItemReq
65
65
  */
66
66
  get tentativelyAccept(): TentativelyAcceptRequestBuilder;
67
67
  /**
68
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
68
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
69
69
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
70
70
  * @returns {Promise<Event>}
71
71
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
72
72
  */
73
73
  get(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): Promise<Event | undefined>;
74
74
  /**
75
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
75
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
76
76
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
77
77
  * @returns {RequestInformation}
78
78
  */
79
79
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
80
80
  }
81
81
  /**
82
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
82
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
83
83
  */
84
84
  export interface EventItemRequestBuilderGetQueryParameters {
85
85
  /**
@@ -22,21 +22,21 @@ export interface ExceptionOccurrencesRequestBuilder extends BaseRequestBuilder<E
22
22
  */
23
23
  byEventId1(eventId1: string): EventItemRequestBuilder;
24
24
  /**
25
- * Get exceptionOccurrences from groups
25
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * Get exceptionOccurrences from groups
32
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * Get exceptionOccurrences from groups
39
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
40
40
  */
41
41
  export interface ExceptionOccurrencesRequestBuilderGetQueryParameters {
42
42
  /**
@@ -65,21 +65,21 @@ export interface EventItemRequestBuilder extends BaseRequestBuilder<EventItemReq
65
65
  */
66
66
  get tentativelyAccept(): TentativelyAcceptRequestBuilder;
67
67
  /**
68
- * Get exceptionOccurrences from groups
68
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
69
69
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
70
70
  * @returns {Promise<Event>}
71
71
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
72
72
  */
73
73
  get(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): Promise<Event | undefined>;
74
74
  /**
75
- * Get exceptionOccurrences from groups
75
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
76
76
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
77
77
  * @returns {RequestInformation}
78
78
  */
79
79
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
80
80
  }
81
81
  /**
82
- * Get exceptionOccurrences from groups
82
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
83
83
  */
84
84
  export interface EventItemRequestBuilderGetQueryParameters {
85
85
  /**
@@ -22,21 +22,21 @@ export interface InstancesRequestBuilder extends BaseRequestBuilder<InstancesReq
22
22
  */
23
23
  byEventId2(eventId2: string): EventItemRequestBuilder;
24
24
  /**
25
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
25
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
32
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
39
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
40
40
  */
41
41
  export interface InstancesRequestBuilderGetQueryParameters {
42
42
  /**
@@ -60,21 +60,21 @@ export interface EventItemRequestBuilder extends BaseRequestBuilder<EventItemReq
60
60
  */
61
61
  get tentativelyAccept(): TentativelyAcceptRequestBuilder;
62
62
  /**
63
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
63
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
64
64
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
65
65
  * @returns {Promise<Event>}
66
66
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
67
67
  */
68
68
  get(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): Promise<Event | undefined>;
69
69
  /**
70
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
70
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
71
71
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
72
72
  * @returns {RequestInformation}
73
73
  */
74
74
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<EventItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
75
75
  }
76
76
  /**
77
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
77
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
78
78
  */
79
79
  export interface EventItemRequestBuilderGetQueryParameters {
80
80
  /**
@@ -22,21 +22,21 @@ export interface InstancesRequestBuilder extends BaseRequestBuilder<InstancesReq
22
22
  */
23
23
  byEventId1(eventId1: string): EventItemRequestBuilder;
24
24
  /**
25
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
25
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
32
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<InstancesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences cancelled from the series. Navigation property. Read-only. Nullable.
39
+ * The occurrences of a recurring series, if the event is a series master. This property includes occurrences that are part of the recurrence pattern, and exceptions modified, but doesn't include occurrences canceled from the series. Navigation property. Read-only. Nullable.
40
40
  */
41
41
  export interface InstancesRequestBuilderGetQueryParameters {
42
42
  /**
@@ -22,21 +22,21 @@ export interface ExceptionOccurrencesRequestBuilder extends BaseRequestBuilder<E
22
22
  */
23
23
  byEventId2(eventId2: string): EventItemRequestBuilder;
24
24
  /**
25
- * Get exceptionOccurrences from groups
25
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
26
26
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
27
27
  * @returns {Promise<EventCollectionResponse>}
28
28
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
29
29
  */
30
30
  get(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): Promise<EventCollectionResponse | undefined>;
31
31
  /**
32
- * Get exceptionOccurrences from groups
32
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
33
33
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
34
34
  * @returns {RequestInformation}
35
35
  */
36
36
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<ExceptionOccurrencesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
37
37
  }
38
38
  /**
39
- * Get exceptionOccurrences from groups
39
+ * Contains the id property values of the event instances that are exceptions in a recurring series.Exceptions can differ from other occurrences in a recurring series, such as the subject, start or end times, or attendees. Exceptions don't include canceled occurrences.Returned only on $select and $expand in a GET operation that specifies the ID (seriesMasterId property value) of a series master event.
40
40
  */
41
41
  export interface ExceptionOccurrencesRequestBuilderGetQueryParameters {
42
42
  /**