public IAsyncEnumerable <UAUserAgreementStatus> GetAllUserAgreementStatusesAsyncEnumerable(string query = "", bool activeProfilesOnly = true, string?skip = null, int?top = 100, bool?accepted = null, Func <Partial <UAUserAgreementStatus>, Partial <UAUserAgreementStatus> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllUserAgreementStatusesAsync(query: query, activeProfilesOnly: activeProfilesOnly, top: top, accepted: accepted, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <UAUserAgreementStatus> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <UAUserAgreementStatus> .Default())), skip, cancellationToken);
Ejemplo n.º 2
0
 public IAsyncEnumerable <CFValue> GetAllFilterValuesAsyncEnumerable(string typeKey, string id, ExtendedTypeScope scope, bool calculateTotal = false, string?skip = null, int?top = 100, Func <Partial <CFValue>, Partial <CFValue> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllFilterValuesAsync(typeKey: typeKey, id: id, scope: scope, calculateTotal: calculateTotal, top: top, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <CFValue> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <CFValue> .Default())), skip, cancellationToken);
Ejemplo n.º 3
0
 public IAsyncEnumerable <AbsenceRecord> GetAllAbsencesAsyncEnumerable(AbsenceListMode viewMode = AbsenceListMode.All, string?skip = null, int?top = 100, string?member = null, List <string>?members = null, string?location = null, string?team = null, DateTime?since = null, DateTime?till = null, string?reason = null, Func <Partial <AbsenceRecord>, Partial <AbsenceRecord> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllAbsencesAsync(viewMode: viewMode, top: top, member: member, members: members, location: location, team: team, since: since, till: till, reason: reason, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <AbsenceRecord> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <AbsenceRecord> .Default())), skip, cancellationToken);
Ejemplo n.º 4
0
 public IAsyncEnumerable <CustomFieldsRecord> GetAllValuesAsyncEnumerable(string typeKey, ExtendedTypeScope scope, string?skip = null, int?top = 100, List <string>?extendedEntityIds = null, Func <Partial <CustomFieldsRecord>, Partial <CustomFieldsRecord> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllValuesAsync(typeKey: typeKey, scope: scope, top: top, extendedEntityIds: extendedEntityIds, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <CustomFieldsRecord> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <CustomFieldsRecord> .Default())), skip, cancellationToken);
Ejemplo n.º 5
0
 public IAsyncEnumerable <EnumValueData> GetAllEnumValuesAsyncEnumerable(string typeKey, string customFieldId, ExtendedTypeScope scope, EnumValueOrdering ordering = EnumValueOrdering.NAMEASC, string?skip = null, int?top = 100, string?query = null, bool?countRecords = null, string?addedByProfileId = null, Func <Partial <EnumValueData>, Partial <EnumValueData> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllEnumValuesAsync(typeKey: typeKey, customFieldId: customFieldId, ordering: ordering, scope: scope, top: top, query: query, countRecords: countRecords, addedByProfileId: addedByProfileId, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <EnumValueData> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <EnumValueData> .Default())), skip, cancellationToken);
 public IAsyncEnumerable <ArticleRecord> GetAllBlogPostsAsyncEnumerable(string?skip = null, int?top = 100, string?term = null, DateTime?dateFrom = null, DateTime?dateTo = null, string?authorId = null, string?teamId = null, string?locationId = null, string?forProfile = null, Func <Partial <ArticleRecord>, Partial <ArticleRecord> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllBlogPostsAsync(top: top, term: term, dateFrom: dateFrom, dateTo: dateTo, authorId: authorId, teamId: teamId, locationId: locationId, forProfile: forProfile, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <ArticleRecord> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <ArticleRecord> .Default())), skip, cancellationToken);
 public IAsyncEnumerable <ThrottledLogin> GetThrottledLoginsAsyncEnumerable(string?skip = null, int?top = 100, string?login = null, Func <Partial <ThrottledLogin>, Partial <ThrottledLogin> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetThrottledLoginsAsync(top: top, login: login, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <ThrottledLogin> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <ThrottledLogin> .Default())), skip, cancellationToken);
Ejemplo n.º 8
0
 public IAsyncEnumerable <AllChannelsListEntry> ListAllChannelsAsyncEnumerable(string query, string?skip = null, int?top = 100, string?quickFilter = null, string?sortColumn = null, ColumnSortOrder?sortOrder = ColumnSortOrder.ASC, Func <Partial <AllChannelsListEntry>, Partial <AllChannelsListEntry> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => ListAllChannelsAsync(query: query, top: top, quickFilter: quickFilter, sortColumn: sortColumn, sortOrder: sortOrder, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <AllChannelsListEntry> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <AllChannelsListEntry> .Default())), skip, cancellationToken);
Ejemplo n.º 9
0
 public IAsyncEnumerable <Meeting> GetAllMeetingsAsyncEnumerable(string summaryQuery = "", List <string>?locationsQuery = null, List <string>?profiles = null, List <string>?teams = null, bool includePrivate = false, bool includeArchived = false, bool includeMeetingInstances = true, string?skip = null, int?top = 100, DateTime?startingAfter = null, DateTime?endingAfter = null, DateTime?endingBefore = null, DateTime?startingBefore = null, string?organizer = null, Func <Partial <Meeting>, Partial <Meeting> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllMeetingsAsync(summaryQuery: summaryQuery, locationsQuery: locationsQuery, profiles: profiles, teams: teams, includePrivate: includePrivate, includeArchived: includeArchived, includeMeetingInstances: includeMeetingInstances, top: top, startingAfter: startingAfter, endingAfter: endingAfter, endingBefore: endingBefore, startingBefore: startingBefore, organizer: organizer, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <Meeting> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <Meeting> .Default())), skip, cancellationToken);
 public IAsyncEnumerable <PublicHoliday> GetAllRelatedHolidaysAsyncEnumerable(string?skip = null, int?top = 100, DateTime?startDate = null, DateTime?endDate = null, Func <Partial <PublicHoliday>, Partial <PublicHoliday> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllRelatedHolidaysAsync(top: top, startDate: startDate, endDate: endDate, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <PublicHoliday> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <PublicHoliday> .Default())), skip, cancellationToken);
 public IAsyncEnumerable <PublicHolidayCalendarRecord> GetAllCalendarsAsyncEnumerable(string?skip = null, int?top = 100, Func <Partial <PublicHolidayCalendarRecord>, Partial <PublicHolidayCalendarRecord> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllCalendarsAsync(top: top, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <PublicHolidayCalendarRecord> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <PublicHolidayCalendarRecord> .Default())), skip, cancellationToken);
Ejemplo n.º 12
0
 public IAsyncEnumerable <TodoItemRecord> GetAllTodoItemsAsyncEnumerable(string?skip = null, int?top = 100, bool?open = null, DateTime?from = null, DateTime?till = null, Func <Partial <TodoItemRecord>, Partial <TodoItemRecord> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => GetAllTodoItemsAsync(top: top, open: open, from: from, till: till, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <TodoItemRecord> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <TodoItemRecord> .Default())), skip, cancellationToken);
Ejemplo n.º 13
0
 public IAsyncEnumerable <EmojiSearchMatchData> SearchAsyncEnumerable(string query, string?skip = null, int?top = 100, Func <Partial <EmojiSearchMatchData>, Partial <EmojiSearchMatchData> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => SearchAsync(query: query, top: top, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <EmojiSearchMatchData> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <EmojiSearchMatchData> .Default())), skip, cancellationToken);
 public IAsyncEnumerable <UnfurlsBlockListEntry> ListBlockedAsyncEnumerable(string?skip = null, int?top = 100, Func <Partial <UnfurlsBlockListEntry>, Partial <UnfurlsBlockListEntry> >?partial = null, CancellationToken cancellationToken = default)
 => BatchEnumerator.AllItems((batchSkip, batchCancellationToken) => ListBlockedAsync(top: top, cancellationToken: cancellationToken, skip: batchSkip, partial: builder => Partial <Batch <UnfurlsBlockListEntry> > .Default().WithNext().WithTotalCount().WithData(partial != null ? partial : _ => Partial <UnfurlsBlockListEntry> .Default())), skip, cancellationToken);