Skip to content

Commit

Permalink
Merge branch 'main' into crowd-linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Uroš Marolt committed Aug 18, 2023
2 parents 3db6ad2 + 20e4d26 commit 1051329
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export interface IDbOrganizationSyncData {
organizationId: string
segmentId: string
tenantId: string
address: string | null
address: unknown | null
attributes: unknown
createdAt: string
description: string | null
Expand Down
12 changes: 11 additions & 1 deletion services/apps/search_sync_worker/src/service/init.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,17 @@ export class InitService extends LoggerBase {
organizationId: InitService.FAKE_ORGANIZATION_ID,
tenantId: InitService.FAKE_TENANT_ID,
segmentId: InitService.FAKE_SEGMENT_ID,
address: 'Unknown address 123, 321 Unknown City, Unknown Country',
address: {
name: 'paris, ile-de-france, france',
metro: null,
region: 'ile-de-france',
country: 'france',
locality: 'paris',
continent: 'europe',
postal_code: null,
address_line_2: null,
street_address: null,
},
attributes: {},
createdAt: new Date().toISOString(),
description: 'Fake organization',
Expand Down

0 comments on commit 1051329

Please sign in to comment.