vrchat 1.20.1 → 1.20.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * VRChat API Documentation
3
3
  *
4
- * The version of the OpenAPI document: 1.20.1
4
+ * The version of the OpenAPI document: 1.20.2
5
5
  * Contact: vrchatapi.lpv0t@aries.fyi
6
6
  *
7
7
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2203,6 +2203,194 @@ export interface BanGroupMemberRequest {
2203
2203
  */
2204
2204
  'userId': string;
2205
2205
  }
2206
+ /**
2207
+ *
2208
+ * @export
2209
+ * @interface CalendarEvent
2210
+ */
2211
+ export interface CalendarEvent {
2212
+ /**
2213
+ *
2214
+ * @type {string}
2215
+ * @memberof CalendarEvent
2216
+ */
2217
+ 'accessType': string;
2218
+ /**
2219
+ *
2220
+ * @type {string}
2221
+ * @memberof CalendarEvent
2222
+ */
2223
+ 'category'?: string;
2224
+ /**
2225
+ *
2226
+ * @type {number}
2227
+ * @memberof CalendarEvent
2228
+ */
2229
+ 'closeInstanceAfterEndMinutes'?: number;
2230
+ /**
2231
+ *
2232
+ * @type {string}
2233
+ * @memberof CalendarEvent
2234
+ */
2235
+ 'createdAt': string;
2236
+ /**
2237
+ *
2238
+ * @type {string}
2239
+ * @memberof CalendarEvent
2240
+ */
2241
+ 'deletedAt'?: string | null;
2242
+ /**
2243
+ *
2244
+ * @type {string}
2245
+ * @memberof CalendarEvent
2246
+ */
2247
+ 'description'?: string;
2248
+ /**
2249
+ *
2250
+ * @type {string}
2251
+ * @memberof CalendarEvent
2252
+ */
2253
+ 'endsAt'?: string;
2254
+ /**
2255
+ *
2256
+ * @type {boolean}
2257
+ * @memberof CalendarEvent
2258
+ */
2259
+ 'featured'?: boolean;
2260
+ /**
2261
+ *
2262
+ * @type {number}
2263
+ * @memberof CalendarEvent
2264
+ */
2265
+ 'guestEarlyJoinMinutes'?: number;
2266
+ /**
2267
+ *
2268
+ * @type {number}
2269
+ * @memberof CalendarEvent
2270
+ */
2271
+ 'hostEarlyJoinMinutes'?: number;
2272
+ /**
2273
+ *
2274
+ * @type {string}
2275
+ * @memberof CalendarEvent
2276
+ */
2277
+ 'id': string;
2278
+ /**
2279
+ *
2280
+ * @type {string}
2281
+ * @memberof CalendarEvent
2282
+ */
2283
+ 'imageId'?: string;
2284
+ /**
2285
+ *
2286
+ * @type {string}
2287
+ * @memberof CalendarEvent
2288
+ */
2289
+ 'imageUrl'?: string | null;
2290
+ /**
2291
+ *
2292
+ * @type {number}
2293
+ * @memberof CalendarEvent
2294
+ */
2295
+ 'interestedUserCount'?: number;
2296
+ /**
2297
+ *
2298
+ * @type {boolean}
2299
+ * @memberof CalendarEvent
2300
+ */
2301
+ 'isDraft'?: boolean;
2302
+ /**
2303
+ *
2304
+ * @type {Array<string>}
2305
+ * @memberof CalendarEvent
2306
+ */
2307
+ 'languages'?: Array<string>;
2308
+ /**
2309
+ *
2310
+ * @type {string}
2311
+ * @memberof CalendarEvent
2312
+ */
2313
+ 'ownerId'?: string;
2314
+ /**
2315
+ *
2316
+ * @type {Array<string>}
2317
+ * @memberof CalendarEvent
2318
+ */
2319
+ 'platforms'?: Array<string>;
2320
+ /**
2321
+ *
2322
+ * @type {Array<string>}
2323
+ * @memberof CalendarEvent
2324
+ */
2325
+ 'roleIds'?: Array<string> | null;
2326
+ /**
2327
+ *
2328
+ * @type {string}
2329
+ * @memberof CalendarEvent
2330
+ */
2331
+ 'startsAt'?: string;
2332
+ /**
2333
+ *
2334
+ * @type {Array<string>}
2335
+ * @memberof CalendarEvent
2336
+ */
2337
+ 'tags'?: Array<string>;
2338
+ /**
2339
+ *
2340
+ * @type {string}
2341
+ * @memberof CalendarEvent
2342
+ */
2343
+ 'title': string;
2344
+ /**
2345
+ *
2346
+ * @type {string}
2347
+ * @memberof CalendarEvent
2348
+ */
2349
+ 'type'?: string;
2350
+ /**
2351
+ *
2352
+ * @type {string}
2353
+ * @memberof CalendarEvent
2354
+ */
2355
+ 'updatedAt'?: string;
2356
+ /**
2357
+ *
2358
+ * @type {boolean}
2359
+ * @memberof CalendarEvent
2360
+ */
2361
+ 'usesInstanceOverflow'?: boolean;
2362
+ /**
2363
+ *
2364
+ * @type {CalendarEventUserInterest}
2365
+ * @memberof CalendarEvent
2366
+ */
2367
+ 'userInterest'?: CalendarEventUserInterest;
2368
+ }
2369
+ /**
2370
+ *
2371
+ * @export
2372
+ * @interface CalendarEventUserInterest
2373
+ */
2374
+ export interface CalendarEventUserInterest {
2375
+ /**
2376
+ *
2377
+ * @type {string}
2378
+ * @memberof CalendarEventUserInterest
2379
+ */
2380
+ 'createdAt'?: string;
2381
+ /**
2382
+ *
2383
+ * @type {boolean}
2384
+ * @memberof CalendarEventUserInterest
2385
+ */
2386
+ 'isFollowing'?: boolean;
2387
+ /**
2388
+ *
2389
+ * @type {string}
2390
+ * @memberof CalendarEventUserInterest
2391
+ */
2392
+ 'updatedAt'?: string;
2393
+ }
2206
2394
  /**
2207
2395
  *
2208
2396
  * @export
@@ -2313,6 +2501,132 @@ export interface CreateAvatarRequest {
2313
2501
  */
2314
2502
  'unityVersion'?: string;
2315
2503
  }
2504
+ /**
2505
+ *
2506
+ * @export
2507
+ * @interface CreateCalendarEventRequest
2508
+ */
2509
+ export interface CreateCalendarEventRequest {
2510
+ /**
2511
+ * Event title
2512
+ * @type {string}
2513
+ * @memberof CreateCalendarEventRequest
2514
+ */
2515
+ 'title': string;
2516
+ /**
2517
+ * Time the event starts at
2518
+ * @type {string}
2519
+ * @memberof CreateCalendarEventRequest
2520
+ */
2521
+ 'startsAt': string;
2522
+ /**
2523
+ *
2524
+ * @type {string}
2525
+ * @memberof CreateCalendarEventRequest
2526
+ */
2527
+ 'description': string;
2528
+ /**
2529
+ * Time the event ends at
2530
+ * @type {string}
2531
+ * @memberof CreateCalendarEventRequest
2532
+ */
2533
+ 'endsAt': string;
2534
+ /**
2535
+ *
2536
+ * @type {string}
2537
+ * @memberof CreateCalendarEventRequest
2538
+ */
2539
+ 'category': string;
2540
+ /**
2541
+ *
2542
+ * @type {Array<string>}
2543
+ * @memberof CreateCalendarEventRequest
2544
+ */
2545
+ 'tags'?: Array<string>;
2546
+ /**
2547
+ *
2548
+ * @type {boolean}
2549
+ * @memberof CreateCalendarEventRequest
2550
+ */
2551
+ 'isDraft'?: boolean;
2552
+ /**
2553
+ *
2554
+ * @type {string}
2555
+ * @memberof CreateCalendarEventRequest
2556
+ */
2557
+ 'imageId'?: string;
2558
+ /**
2559
+ *
2560
+ * @type {Array<string>}
2561
+ * @memberof CreateCalendarEventRequest
2562
+ */
2563
+ 'roleIds'?: Array<string>;
2564
+ /**
2565
+ *
2566
+ * @type {string}
2567
+ * @memberof CreateCalendarEventRequest
2568
+ */
2569
+ 'parentId'?: string;
2570
+ /**
2571
+ *
2572
+ * @type {Array<string>}
2573
+ * @memberof CreateCalendarEventRequest
2574
+ */
2575
+ 'platforms'?: Array<string>;
2576
+ /**
2577
+ *
2578
+ * @type {Array<string>}
2579
+ * @memberof CreateCalendarEventRequest
2580
+ */
2581
+ 'languages'?: Array<string>;
2582
+ /**
2583
+ * Send notification to group members.
2584
+ * @type {boolean}
2585
+ * @memberof CreateCalendarEventRequest
2586
+ */
2587
+ 'sendCreationNotification': boolean;
2588
+ /**
2589
+ *
2590
+ * @type {boolean}
2591
+ * @memberof CreateCalendarEventRequest
2592
+ */
2593
+ 'featured'?: boolean;
2594
+ /**
2595
+ *
2596
+ * @type {number}
2597
+ * @memberof CreateCalendarEventRequest
2598
+ */
2599
+ 'hostEarlyJoinMinutes'?: number;
2600
+ /**
2601
+ *
2602
+ * @type {number}
2603
+ * @memberof CreateCalendarEventRequest
2604
+ */
2605
+ 'guestEarlyJoinMinutes'?: number;
2606
+ /**
2607
+ *
2608
+ * @type {number}
2609
+ * @memberof CreateCalendarEventRequest
2610
+ */
2611
+ 'closeInstanceAfterEndMinutes'?: number;
2612
+ /**
2613
+ *
2614
+ * @type {boolean}
2615
+ * @memberof CreateCalendarEventRequest
2616
+ */
2617
+ 'usesInstanceOverflow'?: boolean;
2618
+ /**
2619
+ *
2620
+ * @type {string}
2621
+ * @memberof CreateCalendarEventRequest
2622
+ */
2623
+ 'accessType': CreateCalendarEventRequestAccessTypeEnum;
2624
+ }
2625
+ export declare const CreateCalendarEventRequestAccessTypeEnum: {
2626
+ readonly Public: "public";
2627
+ readonly Group: "group";
2628
+ };
2629
+ export type CreateCalendarEventRequestAccessTypeEnum = typeof CreateCalendarEventRequestAccessTypeEnum[keyof typeof CreateCalendarEventRequestAccessTypeEnum];
2316
2630
  /**
2317
2631
  *
2318
2632
  * @export
@@ -4395,6 +4709,19 @@ export interface FinishFileDataUploadRequest {
4395
4709
  */
4396
4710
  'maxParts': string;
4397
4711
  }
4712
+ /**
4713
+ *
4714
+ * @export
4715
+ * @interface FollowCalendarEventRequest
4716
+ */
4717
+ export interface FollowCalendarEventRequest {
4718
+ /**
4719
+ *
4720
+ * @type {boolean}
4721
+ * @memberof FollowCalendarEventRequest
4722
+ */
4723
+ 'isFollowing': boolean;
4724
+ }
4398
4725
  /**
4399
4726
  *
4400
4727
  * @export
@@ -8104,6 +8431,31 @@ export declare const OrderOption: {
8104
8431
  readonly Descending: "descending";
8105
8432
  };
8106
8433
  export type OrderOption = typeof OrderOption[keyof typeof OrderOption];
8434
+ /**
8435
+ *
8436
+ * @export
8437
+ * @interface PaginatedCalendarEventList
8438
+ */
8439
+ export interface PaginatedCalendarEventList {
8440
+ /**
8441
+ *
8442
+ * @type {Array<CalendarEvent>}
8443
+ * @memberof PaginatedCalendarEventList
8444
+ */
8445
+ 'results'?: Array<CalendarEvent>;
8446
+ /**
8447
+ * The total number of results that the query would return if there were no pagination.
8448
+ * @type {number}
8449
+ * @memberof PaginatedCalendarEventList
8450
+ */
8451
+ 'totalCount'?: number;
8452
+ /**
8453
+ * Whether there are more results after this page.
8454
+ * @type {boolean}
8455
+ * @memberof PaginatedCalendarEventList
8456
+ */
8457
+ 'hasNext'?: boolean;
8458
+ }
8107
8459
  /**
8108
8460
  *
8109
8461
  * @export
@@ -10128,13 +10480,128 @@ export interface UpdateAvatarRequest {
10128
10480
  /**
10129
10481
  *
10130
10482
  * @export
10131
- * @interface UpdateFavoriteGroupRequest
10483
+ * @interface UpdateCalendarEventRequest
10132
10484
  */
10133
- export interface UpdateFavoriteGroupRequest {
10485
+ export interface UpdateCalendarEventRequest {
10134
10486
  /**
10135
- *
10487
+ * Event title
10136
10488
  * @type {string}
10137
- * @memberof UpdateFavoriteGroupRequest
10489
+ * @memberof UpdateCalendarEventRequest
10490
+ */
10491
+ 'title'?: string;
10492
+ /**
10493
+ * Time the vent starts at
10494
+ * @type {string}
10495
+ * @memberof UpdateCalendarEventRequest
10496
+ */
10497
+ 'startsAt'?: string;
10498
+ /**
10499
+ *
10500
+ * @type {string}
10501
+ * @memberof UpdateCalendarEventRequest
10502
+ */
10503
+ 'description'?: string;
10504
+ /**
10505
+ * Time the vent starts at
10506
+ * @type {string}
10507
+ * @memberof UpdateCalendarEventRequest
10508
+ */
10509
+ 'endsAt'?: string;
10510
+ /**
10511
+ *
10512
+ * @type {string}
10513
+ * @memberof UpdateCalendarEventRequest
10514
+ */
10515
+ 'category'?: string;
10516
+ /**
10517
+ *
10518
+ * @type {Array<string>}
10519
+ * @memberof UpdateCalendarEventRequest
10520
+ */
10521
+ 'tags'?: Array<string>;
10522
+ /**
10523
+ *
10524
+ * @type {boolean}
10525
+ * @memberof UpdateCalendarEventRequest
10526
+ */
10527
+ 'isDraft'?: boolean;
10528
+ /**
10529
+ *
10530
+ * @type {string}
10531
+ * @memberof UpdateCalendarEventRequest
10532
+ */
10533
+ 'imageId'?: string;
10534
+ /**
10535
+ *
10536
+ * @type {Array<string>}
10537
+ * @memberof UpdateCalendarEventRequest
10538
+ */
10539
+ 'roleIds'?: Array<string>;
10540
+ /**
10541
+ *
10542
+ * @type {string}
10543
+ * @memberof UpdateCalendarEventRequest
10544
+ */
10545
+ 'parentId'?: string;
10546
+ /**
10547
+ *
10548
+ * @type {Array<string>}
10549
+ * @memberof UpdateCalendarEventRequest
10550
+ */
10551
+ 'platforms'?: Array<string>;
10552
+ /**
10553
+ *
10554
+ * @type {Array<string>}
10555
+ * @memberof UpdateCalendarEventRequest
10556
+ */
10557
+ 'languages'?: Array<string>;
10558
+ /**
10559
+ * Send notification to group members.
10560
+ * @type {boolean}
10561
+ * @memberof UpdateCalendarEventRequest
10562
+ */
10563
+ 'sendCreationNotification'?: boolean;
10564
+ /**
10565
+ *
10566
+ * @type {boolean}
10567
+ * @memberof UpdateCalendarEventRequest
10568
+ */
10569
+ 'featured'?: boolean;
10570
+ /**
10571
+ *
10572
+ * @type {number}
10573
+ * @memberof UpdateCalendarEventRequest
10574
+ */
10575
+ 'hostEarlyJoinMinutes'?: number;
10576
+ /**
10577
+ *
10578
+ * @type {number}
10579
+ * @memberof UpdateCalendarEventRequest
10580
+ */
10581
+ 'guestEarlyJoinMinutes'?: number;
10582
+ /**
10583
+ *
10584
+ * @type {number}
10585
+ * @memberof UpdateCalendarEventRequest
10586
+ */
10587
+ 'closeInstanceAfterEndMinutes'?: number;
10588
+ /**
10589
+ *
10590
+ * @type {boolean}
10591
+ * @memberof UpdateCalendarEventRequest
10592
+ */
10593
+ 'usesInstanceOverflow'?: boolean;
10594
+ }
10595
+ /**
10596
+ *
10597
+ * @export
10598
+ * @interface UpdateFavoriteGroupRequest
10599
+ */
10600
+ export interface UpdateFavoriteGroupRequest {
10601
+ /**
10602
+ *
10603
+ * @type {string}
10604
+ * @memberof UpdateFavoriteGroupRequest
10138
10605
  */
10139
10606
  'displayName'?: string;
10140
10607
  /**
@@ -12509,6 +12976,430 @@ export declare class AvatarsApi extends BaseAPI {
12509
12976
  */
12510
12977
  updateAvatar(avatarId: string, updateAvatarRequest?: UpdateAvatarRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Avatar, any>>;
12511
12978
  }
12979
+ /**
12980
+ * CalendarApi - axios parameter creator
12981
+ * @export
12982
+ */
12983
+ export declare const CalendarApiAxiosParamCreator: (configuration?: Configuration) => {
12984
+ /**
12985
+ * Creates an event for a group on the calendar
12986
+ * @summary Create a calendar event
12987
+ * @param {string} groupId Must be a valid group ID.
12988
+ * @param {CreateCalendarEventRequest} createCalendarEventRequest
12989
+ * @param {*} [options] Override http request option.
12990
+ * @throws {RequiredError}
12991
+ */
12992
+ createGroupCalendarEvent: (groupId: string, createCalendarEventRequest: CreateCalendarEventRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12993
+ /**
12994
+ * Delete a group calendar event
12995
+ * @summary Delete a calendar event
12996
+ * @param {string} groupId Must be a valid group ID.
12997
+ * @param {string} calendarId Must be a valid calendar ID.
12998
+ * @param {*} [options] Override http request option.
12999
+ * @throws {RequiredError}
13000
+ */
13001
+ deleteGroupCalendarEvent: (groupId: string, calendarId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13002
+ /**
13003
+ * Follow or unfollow an event on a group\'s calendar
13004
+ * @summary Follow a calendar event
13005
+ * @param {string} groupId Must be a valid group ID.
13006
+ * @param {string} calendarId Must be a valid calendar ID.
13007
+ * @param {FollowCalendarEventRequest} followCalendarEventRequest
13008
+ * @param {*} [options] Override http request option.
13009
+ * @throws {RequiredError}
13010
+ */
13011
+ followGroupCalendarEvent: (groupId: string, calendarId: string, followCalendarEventRequest: FollowCalendarEventRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13012
+ /**
13013
+ * Get a list of a user\'s calendar events for the month in ?date
13014
+ * @summary List calendar events
13015
+ * @param {string} [date] The month to search in.
13016
+ * @param {number} [n] The number of objects to return.
13017
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13018
+ * @param {*} [options] Override http request option.
13019
+ * @throws {RequiredError}
13020
+ */
13021
+ getCalendarEvents: (date?: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13022
+ /**
13023
+ * Get a list of a featured calendar events for the month in ?date
13024
+ * @summary List featured calendar events
13025
+ * @param {string} [date] The month to search in.
13026
+ * @param {number} [n] The number of objects to return.
13027
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13028
+ * @param {*} [options] Override http request option.
13029
+ * @throws {RequiredError}
13030
+ */
13031
+ getFeaturedCalendarEvents: (date?: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13032
+ /**
13033
+ * Get a list of a followed calendar events for the month in ?date
13034
+ * @summary List followed calendar events
13035
+ * @param {string} [date] The month to search in.
13036
+ * @param {number} [n] The number of objects to return.
13037
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13038
+ * @param {*} [options] Override http request option.
13039
+ * @throws {RequiredError}
13040
+ */
13041
+ getFollowedCalendarEvents: (date?: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13042
+ /**
13043
+ * Get a group calendar event
13044
+ * @summary Get a calendar event
13045
+ * @param {string} groupId Must be a valid group ID.
13046
+ * @param {string} calendarId Must be a valid calendar ID.
13047
+ * @param {*} [options] Override http request option.
13048
+ * @throws {RequiredError}
13049
+ */
13050
+ getGroupCalendarEvent: (groupId: string, calendarId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13051
+ /**
13052
+ * Returns the specified calendar in iCalendar (ICS) format.
13053
+ * @summary Download calendar event as ICS
13054
+ * @param {string} groupId Must be a valid group ID.
13055
+ * @param {string} calendarId Must be a valid calendar ID.
13056
+ * @param {*} [options] Override http request option.
13057
+ * @throws {RequiredError}
13058
+ */
13059
+ getGroupCalendarEventICS: (groupId: string, calendarId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13060
+ /**
13061
+ * Get a list of a group\'s calendar events
13062
+ * @summary List a group\'s calendar events
13063
+ * @param {string} groupId Must be a valid group ID.
13064
+ * @param {string} [date] The month to search in.
13065
+ * @param {number} [n] The number of objects to return.
13066
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13067
+ * @param {*} [options] Override http request option.
13068
+ * @throws {RequiredError}
13069
+ */
13070
+ getGroupCalendarEvents: (groupId: string, date?: string, n?: number, offset?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13071
+ /**
13072
+ * Updates an event for a group on the calendar
13073
+ * @summary Update a calendar event
13074
+ * @param {string} groupId Must be a valid group ID.
13075
+ * @param {string} calendarId Must be a valid calendar ID.
13076
+ * @param {UpdateCalendarEventRequest} updateCalendarEventRequest
13077
+ * @param {*} [options] Override http request option.
13078
+ * @throws {RequiredError}
13079
+ */
13080
+ updateGroupCalendarEvent: (groupId: string, calendarId: string, updateCalendarEventRequest: UpdateCalendarEventRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13081
+ };
13082
+ /**
13083
+ * CalendarApi - functional programming interface
13084
+ * @export
13085
+ */
13086
+ export declare const CalendarApiFp: (configuration?: Configuration) => {
13087
+ /**
13088
+ * Creates an event for a group on the calendar
13089
+ * @summary Create a calendar event
13090
+ * @param {string} groupId Must be a valid group ID.
13091
+ * @param {CreateCalendarEventRequest} createCalendarEventRequest
13092
+ * @param {*} [options] Override http request option.
13093
+ * @throws {RequiredError}
13094
+ */
13095
+ createGroupCalendarEvent(groupId: string, createCalendarEventRequest: CreateCalendarEventRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalendarEvent>>;
13096
+ /**
13097
+ * Delete a group calendar event
13098
+ * @summary Delete a calendar event
13099
+ * @param {string} groupId Must be a valid group ID.
13100
+ * @param {string} calendarId Must be a valid calendar ID.
13101
+ * @param {*} [options] Override http request option.
13102
+ * @throws {RequiredError}
13103
+ */
13104
+ deleteGroupCalendarEvent(groupId: string, calendarId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Success>>;
13105
+ /**
13106
+ * Follow or unfollow an event on a group\'s calendar
13107
+ * @summary Follow a calendar event
13108
+ * @param {string} groupId Must be a valid group ID.
13109
+ * @param {string} calendarId Must be a valid calendar ID.
13110
+ * @param {FollowCalendarEventRequest} followCalendarEventRequest
13111
+ * @param {*} [options] Override http request option.
13112
+ * @throws {RequiredError}
13113
+ */
13114
+ followGroupCalendarEvent(groupId: string, calendarId: string, followCalendarEventRequest: FollowCalendarEventRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalendarEvent>>;
13115
+ /**
13116
+ * Get a list of a user\'s calendar events for the month in ?date
13117
+ * @summary List calendar events
13118
+ * @param {string} [date] The month to search in.
13119
+ * @param {number} [n] The number of objects to return.
13120
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13121
+ * @param {*} [options] Override http request option.
13122
+ * @throws {RequiredError}
13123
+ */
13124
+ getCalendarEvents(date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedCalendarEventList>>;
13125
+ /**
13126
+ * Get a list of a featured calendar events for the month in ?date
13127
+ * @summary List featured calendar events
13128
+ * @param {string} [date] The month to search in.
13129
+ * @param {number} [n] The number of objects to return.
13130
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13131
+ * @param {*} [options] Override http request option.
13132
+ * @throws {RequiredError}
13133
+ */
13134
+ getFeaturedCalendarEvents(date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedCalendarEventList>>;
13135
+ /**
13136
+ * Get a list of a followed calendar events for the month in ?date
13137
+ * @summary List followed calendar events
13138
+ * @param {string} [date] The month to search in.
13139
+ * @param {number} [n] The number of objects to return.
13140
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13141
+ * @param {*} [options] Override http request option.
13142
+ * @throws {RequiredError}
13143
+ */
13144
+ getFollowedCalendarEvents(date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedCalendarEventList>>;
13145
+ /**
13146
+ * Get a group calendar event
13147
+ * @summary Get a calendar event
13148
+ * @param {string} groupId Must be a valid group ID.
13149
+ * @param {string} calendarId Must be a valid calendar ID.
13150
+ * @param {*} [options] Override http request option.
13151
+ * @throws {RequiredError}
13152
+ */
13153
+ getGroupCalendarEvent(groupId: string, calendarId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalendarEvent>>;
13154
+ /**
13155
+ * Returns the specified calendar in iCalendar (ICS) format.
13156
+ * @summary Download calendar event as ICS
13157
+ * @param {string} groupId Must be a valid group ID.
13158
+ * @param {string} calendarId Must be a valid calendar ID.
13159
+ * @param {*} [options] Override http request option.
13160
+ * @throws {RequiredError}
13161
+ */
13162
+ getGroupCalendarEventICS(groupId: string, calendarId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
13163
+ /**
13164
+ * Get a list of a group\'s calendar events
13165
+ * @summary List a group\'s calendar events
13166
+ * @param {string} groupId Must be a valid group ID.
13167
+ * @param {string} [date] The month to search in.
13168
+ * @param {number} [n] The number of objects to return.
13169
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13170
+ * @param {*} [options] Override http request option.
13171
+ * @throws {RequiredError}
13172
+ */
13173
+ getGroupCalendarEvents(groupId: string, date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedCalendarEventList>>;
13174
+ /**
13175
+ * Updates an event for a group on the calendar
13176
+ * @summary Update a calendar event
13177
+ * @param {string} groupId Must be a valid group ID.
13178
+ * @param {string} calendarId Must be a valid calendar ID.
13179
+ * @param {UpdateCalendarEventRequest} updateCalendarEventRequest
13180
+ * @param {*} [options] Override http request option.
13181
+ * @throws {RequiredError}
13182
+ */
13183
+ updateGroupCalendarEvent(groupId: string, calendarId: string, updateCalendarEventRequest: UpdateCalendarEventRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CalendarEvent>>;
13184
+ };
13185
+ /**
13186
+ * CalendarApi - factory interface
13187
+ * @export
13188
+ */
13189
+ export declare const CalendarApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
13190
+ /**
13191
+ * Creates an event for a group on the calendar
13192
+ * @summary Create a calendar event
13193
+ * @param {string} groupId Must be a valid group ID.
13194
+ * @param {CreateCalendarEventRequest} createCalendarEventRequest
13195
+ * @param {*} [options] Override http request option.
13196
+ * @throws {RequiredError}
13197
+ */
13198
+ createGroupCalendarEvent(groupId: string, createCalendarEventRequest: CreateCalendarEventRequest, options?: any): AxiosPromise<CalendarEvent>;
13199
+ /**
13200
+ * Delete a group calendar event
13201
+ * @summary Delete a calendar event
13202
+ * @param {string} groupId Must be a valid group ID.
13203
+ * @param {string} calendarId Must be a valid calendar ID.
13204
+ * @param {*} [options] Override http request option.
13205
+ * @throws {RequiredError}
13206
+ */
13207
+ deleteGroupCalendarEvent(groupId: string, calendarId: string, options?: any): AxiosPromise<Success>;
13208
+ /**
13209
+ * Follow or unfollow an event on a group\'s calendar
13210
+ * @summary Follow a calendar event
13211
+ * @param {string} groupId Must be a valid group ID.
13212
+ * @param {string} calendarId Must be a valid calendar ID.
13213
+ * @param {FollowCalendarEventRequest} followCalendarEventRequest
13214
+ * @param {*} [options] Override http request option.
13215
+ * @throws {RequiredError}
13216
+ */
13217
+ followGroupCalendarEvent(groupId: string, calendarId: string, followCalendarEventRequest: FollowCalendarEventRequest, options?: any): AxiosPromise<CalendarEvent>;
13218
+ /**
13219
+ * Get a list of a user\'s calendar events for the month in ?date
13220
+ * @summary List calendar events
13221
+ * @param {string} [date] The month to search in.
13222
+ * @param {number} [n] The number of objects to return.
13223
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13224
+ * @param {*} [options] Override http request option.
13225
+ * @throws {RequiredError}
13226
+ */
13227
+ getCalendarEvents(date?: string, n?: number, offset?: number, options?: any): AxiosPromise<PaginatedCalendarEventList>;
13228
+ /**
13229
+ * Get a list of a featured calendar events for the month in ?date
13230
+ * @summary List featured calendar events
13231
+ * @param {string} [date] The month to search in.
13232
+ * @param {number} [n] The number of objects to return.
13233
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13234
+ * @param {*} [options] Override http request option.
13235
+ * @throws {RequiredError}
13236
+ */
13237
+ getFeaturedCalendarEvents(date?: string, n?: number, offset?: number, options?: any): AxiosPromise<PaginatedCalendarEventList>;
13238
+ /**
13239
+ * Get a list of a followed calendar events for the month in ?date
13240
+ * @summary List followed calendar events
13241
+ * @param {string} [date] The month to search in.
13242
+ * @param {number} [n] The number of objects to return.
13243
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13244
+ * @param {*} [options] Override http request option.
13245
+ * @throws {RequiredError}
13246
+ */
13247
+ getFollowedCalendarEvents(date?: string, n?: number, offset?: number, options?: any): AxiosPromise<PaginatedCalendarEventList>;
13248
+ /**
13249
+ * Get a group calendar event
13250
+ * @summary Get a calendar event
13251
+ * @param {string} groupId Must be a valid group ID.
13252
+ * @param {string} calendarId Must be a valid calendar ID.
13253
+ * @param {*} [options] Override http request option.
13254
+ * @throws {RequiredError}
13255
+ */
13256
+ getGroupCalendarEvent(groupId: string, calendarId: string, options?: any): AxiosPromise<CalendarEvent>;
13257
+ /**
13258
+ * Returns the specified calendar in iCalendar (ICS) format.
13259
+ * @summary Download calendar event as ICS
13260
+ * @param {string} groupId Must be a valid group ID.
13261
+ * @param {string} calendarId Must be a valid calendar ID.
13262
+ * @param {*} [options] Override http request option.
13263
+ * @throws {RequiredError}
13264
+ */
13265
+ getGroupCalendarEventICS(groupId: string, calendarId: string, options?: any): AxiosPromise<File>;
13266
+ /**
13267
+ * Get a list of a group\'s calendar events
13268
+ * @summary List a group\'s calendar events
13269
+ * @param {string} groupId Must be a valid group ID.
13270
+ * @param {string} [date] The month to search in.
13271
+ * @param {number} [n] The number of objects to return.
13272
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13273
+ * @param {*} [options] Override http request option.
13274
+ * @throws {RequiredError}
13275
+ */
13276
+ getGroupCalendarEvents(groupId: string, date?: string, n?: number, offset?: number, options?: any): AxiosPromise<PaginatedCalendarEventList>;
13277
+ /**
13278
+ * Updates an event for a group on the calendar
13279
+ * @summary Update a calendar event
13280
+ * @param {string} groupId Must be a valid group ID.
13281
+ * @param {string} calendarId Must be a valid calendar ID.
13282
+ * @param {UpdateCalendarEventRequest} updateCalendarEventRequest
13283
+ * @param {*} [options] Override http request option.
13284
+ * @throws {RequiredError}
13285
+ */
13286
+ updateGroupCalendarEvent(groupId: string, calendarId: string, updateCalendarEventRequest: UpdateCalendarEventRequest, options?: any): AxiosPromise<CalendarEvent>;
13287
+ };
13288
+ /**
13289
+ * CalendarApi - object-oriented interface
13290
+ * @export
13291
+ * @class CalendarApi
13292
+ * @extends {BaseAPI}
13293
+ */
13294
+ export declare class CalendarApi extends BaseAPI {
13295
+ /**
13296
+ * Creates an event for a group on the calendar
13297
+ * @summary Create a calendar event
13298
+ * @param {string} groupId Must be a valid group ID.
13299
+ * @param {CreateCalendarEventRequest} createCalendarEventRequest
13300
+ * @param {*} [options] Override http request option.
13301
+ * @throws {RequiredError}
13302
+ * @memberof CalendarApi
13303
+ */
13304
+ createGroupCalendarEvent(groupId: string, createCalendarEventRequest: CreateCalendarEventRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalendarEvent, any>>;
13305
+ /**
13306
+ * Delete a group calendar event
13307
+ * @summary Delete a calendar event
13308
+ * @param {string} groupId Must be a valid group ID.
13309
+ * @param {string} calendarId Must be a valid calendar ID.
13310
+ * @param {*} [options] Override http request option.
13311
+ * @throws {RequiredError}
13312
+ * @memberof CalendarApi
13313
+ */
13314
+ deleteGroupCalendarEvent(groupId: string, calendarId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Success, any>>;
13315
+ /**
13316
+ * Follow or unfollow an event on a group\'s calendar
13317
+ * @summary Follow a calendar event
13318
+ * @param {string} groupId Must be a valid group ID.
13319
+ * @param {string} calendarId Must be a valid calendar ID.
13320
+ * @param {FollowCalendarEventRequest} followCalendarEventRequest
13321
+ * @param {*} [options] Override http request option.
13322
+ * @throws {RequiredError}
13323
+ * @memberof CalendarApi
13324
+ */
13325
+ followGroupCalendarEvent(groupId: string, calendarId: string, followCalendarEventRequest: FollowCalendarEventRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalendarEvent, any>>;
13326
+ /**
13327
+ * Get a list of a user\'s calendar events for the month in ?date
13328
+ * @summary List calendar events
13329
+ * @param {string} [date] The month to search in.
13330
+ * @param {number} [n] The number of objects to return.
13331
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13332
+ * @param {*} [options] Override http request option.
13333
+ * @throws {RequiredError}
13334
+ * @memberof CalendarApi
13335
+ */
13336
+ getCalendarEvents(date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedCalendarEventList, any>>;
13337
+ /**
13338
+ * Get a list of a featured calendar events for the month in ?date
13339
+ * @summary List featured calendar events
13340
+ * @param {string} [date] The month to search in.
13341
+ * @param {number} [n] The number of objects to return.
13342
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13343
+ * @param {*} [options] Override http request option.
13344
+ * @throws {RequiredError}
13345
+ * @memberof CalendarApi
13346
+ */
13347
+ getFeaturedCalendarEvents(date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedCalendarEventList, any>>;
13348
+ /**
13349
+ * Get a list of a followed calendar events for the month in ?date
13350
+ * @summary List followed calendar events
13351
+ * @param {string} [date] The month to search in.
13352
+ * @param {number} [n] The number of objects to return.
13353
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13354
+ * @param {*} [options] Override http request option.
13355
+ * @throws {RequiredError}
13356
+ * @memberof CalendarApi
13357
+ */
13358
+ getFollowedCalendarEvents(date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedCalendarEventList, any>>;
13359
+ /**
13360
+ * Get a group calendar event
13361
+ * @summary Get a calendar event
13362
+ * @param {string} groupId Must be a valid group ID.
13363
+ * @param {string} calendarId Must be a valid calendar ID.
13364
+ * @param {*} [options] Override http request option.
13365
+ * @throws {RequiredError}
13366
+ * @memberof CalendarApi
13367
+ */
13368
+ getGroupCalendarEvent(groupId: string, calendarId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalendarEvent, any>>;
13369
+ /**
13370
+ * Returns the specified calendar in iCalendar (ICS) format.
13371
+ * @summary Download calendar event as ICS
13372
+ * @param {string} groupId Must be a valid group ID.
13373
+ * @param {string} calendarId Must be a valid calendar ID.
13374
+ * @param {*} [options] Override http request option.
13375
+ * @throws {RequiredError}
13376
+ * @memberof CalendarApi
13377
+ */
13378
+ getGroupCalendarEventICS(groupId: string, calendarId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
13379
+ /**
13380
+ * Get a list of a group\'s calendar events
13381
+ * @summary List a group\'s calendar events
13382
+ * @param {string} groupId Must be a valid group ID.
13383
+ * @param {string} [date] The month to search in.
13384
+ * @param {number} [n] The number of objects to return.
13385
+ * @param {number} [offset] A zero-based offset from the default object sorting from where search results start.
13386
+ * @param {*} [options] Override http request option.
13387
+ * @throws {RequiredError}
13388
+ * @memberof CalendarApi
13389
+ */
13390
+ getGroupCalendarEvents(groupId: string, date?: string, n?: number, offset?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedCalendarEventList, any>>;
13391
+ /**
13392
+ * Updates an event for a group on the calendar
13393
+ * @summary Update a calendar event
13394
+ * @param {string} groupId Must be a valid group ID.
13395
+ * @param {string} calendarId Must be a valid calendar ID.
13396
+ * @param {UpdateCalendarEventRequest} updateCalendarEventRequest
13397
+ * @param {*} [options] Override http request option.
13398
+ * @throws {RequiredError}
13399
+ * @memberof CalendarApi
13400
+ */
13401
+ updateGroupCalendarEvent(groupId: string, calendarId: string, updateCalendarEventRequest: UpdateCalendarEventRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CalendarEvent, any>>;
13402
+ }
12512
13403
  /**
12513
13404
  * EconomyApi - axios parameter creator
12514
13405
  * @export