@otr-app/shared-backend-generated-client 2.4.101 → 2.5.1

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.
@@ -26,10 +26,11 @@ export declare class ActivityFeedControllerApi {
26
26
  * @param courtId courtId
27
27
  * @param hasProfilePicture hasProfilePicture
28
28
  * @param nextPageToken nextPageToken
29
+ * @param preferredRegionCode preferredRegionCode
29
30
  * @param previousPageToken previousPageToken
30
31
  * @param regionCode regionCode
31
32
  */
32
- listActivityFeedUsingGET(limit: number, activityType?: 'PURCHASE' | 'REFERRAL' | 'REFUND' | 'RESOLUTION' | 'TICKET_REVIEW', courtId?: number, hasProfilePicture?: boolean, nextPageToken?: string, previousPageToken?: string, regionCode?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetActivityFeedResponse>;
33
+ listActivityFeedUsingGET(limit: number, activityType?: 'PURCHASE' | 'REFERRAL' | 'REFUND' | 'RESOLUTION' | 'TICKET_REVIEW', courtId?: number, hasProfilePicture?: boolean, nextPageToken?: string, preferredRegionCode?: boolean, previousPageToken?: string, regionCode?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetActivityFeedResponse>;
33
34
  /**
34
35
  *
35
36
  * @summary listCaseOutcomes
@@ -28,10 +28,11 @@ export class ActivityFeedControllerApi {
28
28
  * @param courtId courtId
29
29
  * @param hasProfilePicture hasProfilePicture
30
30
  * @param nextPageToken nextPageToken
31
+ * @param preferredRegionCode preferredRegionCode
31
32
  * @param previousPageToken previousPageToken
32
33
  * @param regionCode regionCode
33
34
  */
34
- listActivityFeedUsingGET(limit, activityType, courtId, hasProfilePicture, nextPageToken, previousPageToken, regionCode, extraHttpRequestParams) {
35
+ listActivityFeedUsingGET(limit, activityType, courtId, hasProfilePicture, nextPageToken, preferredRegionCode, previousPageToken, regionCode, extraHttpRequestParams) {
35
36
  const localVarPath = this.basePath + '/api/v1/activity-feed';
36
37
  let queryParameters = {};
37
38
  let headerParams = Object.assign({}, this.defaultHeaders);
@@ -54,6 +55,9 @@ export class ActivityFeedControllerApi {
54
55
  if (nextPageToken !== undefined) {
55
56
  queryParameters['nextPageToken'] = nextPageToken;
56
57
  }
58
+ if (preferredRegionCode !== undefined) {
59
+ queryParameters['preferredRegionCode'] = preferredRegionCode;
60
+ }
57
61
  if (previousPageToken !== undefined) {
58
62
  queryParameters['previousPageToken'] = previousPageToken;
59
63
  }
@@ -17,6 +17,7 @@ export interface ListActivityFeedUsingGETRequest {
17
17
  courtId?: number;
18
18
  hasProfilePicture?: boolean;
19
19
  nextPageToken?: string;
20
+ preferredRegionCode?: boolean;
20
21
  previousPageToken?: string;
21
22
  regionCode?: string;
22
23
  }
@@ -50,6 +50,9 @@ export class ActivityFeedControllerApi extends runtime.BaseAPI {
50
50
  if (requestParameters.nextPageToken !== undefined) {
51
51
  queryParameters['nextPageToken'] = requestParameters.nextPageToken;
52
52
  }
53
+ if (requestParameters.preferredRegionCode !== undefined) {
54
+ queryParameters['preferredRegionCode'] = requestParameters.preferredRegionCode;
55
+ }
53
56
  if (requestParameters.previousPageToken !== undefined) {
54
57
  queryParameters['previousPageToken'] = requestParameters.previousPageToken;
55
58
  }