@zeniai/client-epic-state 5.1.86 → 5.1.87
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/lib/entity/aiCfo/aiCfoPayload.d.ts +7 -0
- package/lib/entity/aiCfo/aiCfoReducer.d.ts +3 -2
- package/lib/entity/aiCfo/aiCfoReducer.js +25 -2
- package/lib/entity/aiCfo/aiCfoState.d.ts +7 -0
- package/lib/entity/customerSatisfaction/customerSatisfactionReducer.d.ts +1 -1
- package/lib/entity/customerSatisfaction/customerSatisfactionReducer.js +6 -2
- package/lib/entity/snackbar/snackbarTypes.d.ts +1 -1
- package/lib/entity/snackbar/snackbarTypes.js +29 -0
- package/lib/esm/entity/aiCfo/aiCfoReducer.js +23 -1
- package/lib/esm/entity/customerSatisfaction/customerSatisfactionReducer.js +4 -1
- package/lib/esm/entity/snackbar/snackbarTypes.js +29 -0
- package/lib/esm/index.js +2 -2
- package/lib/esm/view/companyHealthMetricView/companyHealthMetricConfigReducer.js +4 -1
- package/lib/esm/view/invoicing/createCreditNote/createCreditNoteEpic.js +24 -4
- package/lib/esm/view/invoicing/createInvoice/createInvoiceEpic.js +24 -4
- package/lib/esm/view/invoicing/createInvoice/createInvoiceSelector.js +37 -10
- package/lib/esm/view/invoicing/discountAction/discountActionEpic.js +33 -9
- package/lib/esm/view/invoicing/dunningAction/dunningActionEpic.js +35 -9
- package/lib/esm/view/invoicing/editInvoicingCatalogItemDetailView/catalogDetailEditPayload.js +5 -1
- package/lib/esm/view/invoicing/editInvoicingCatalogItemDetailView/saveInvoicingCatalogItemEpic.js +32 -5
- package/lib/esm/view/invoicing/editInvoicingCouponDetailView/saveInvoicingCouponEpic.js +23 -3
- package/lib/esm/view/invoicing/editInvoicingCustomerDetailView/saveInvoicingCustomerEpic.js +24 -4
- package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/saveInvoicingSubscriptionEpic.js +24 -4
- package/lib/esm/view/invoicing/editInvoicingSubscriptionDetailView/syncInvoicingSubscriptionCouponsEpic.js +20 -3
- package/lib/esm/view/invoicing/invoiceAction/invoiceActionEpic.js +60 -17
- package/lib/esm/view/invoicing/invoicingConfigView/invoicingConfigViewReducer.js +30 -0
- package/lib/esm/view/invoicing/invoicingConfigView/invoicingConfigViewSelector.js +4 -29
- package/lib/esm/view/invoicing/invoicingQboView/epics/retryInvoicingQboSyncTaskEpic.js +29 -10
- package/lib/esm/view/invoicing/invoicingQboView/epics/startInvoicingQboBackfillEpic.js +28 -5
- package/lib/esm/view/invoicing/issueCreditNote/issueCreditNoteEpic.js +24 -4
- package/lib/esm/view/invoicing/issueCreditNote/issueCreditNoteSelector.js +22 -14
- package/lib/esm/view/invoicing/recordPayment/recordPaymentEpic.js +46 -7
- package/lib/esm/view/invoicing/settingsView/settingsViewEpics.js +26 -8
- package/lib/esm/view/invoicing/settingsView/settingsViewReducer.js +1 -1
- package/lib/esm/view/invoicing/settingsView/settingsViewSelector.js +4 -1
- package/lib/esm/view/invoicing/subscriptionAction/subscriptionActionEpic.js +41 -9
- package/lib/esm/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsReducer.js +4 -1
- package/lib/esm/view/vendorTabView/vendorTabViewReducer.js +4 -1
- package/lib/index.d.ts +6 -5
- package/lib/index.js +7 -7
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigReducer.d.ts +1 -1
- package/lib/view/companyHealthMetricView/companyHealthMetricConfigReducer.js +5 -2
- package/lib/view/expenseAutomationView/helpers/transactionCategorizationLocalDataHelper.d.ts +1 -1
- package/lib/view/invoicing/createCreditNote/createCreditNoteEpic.d.ts +2 -1
- package/lib/view/invoicing/createCreditNote/createCreditNoteEpic.js +23 -3
- package/lib/view/invoicing/createInvoice/createInvoiceEpic.d.ts +2 -1
- package/lib/view/invoicing/createInvoice/createInvoiceEpic.js +23 -3
- package/lib/view/invoicing/createInvoice/createInvoiceSelector.d.ts +22 -8
- package/lib/view/invoicing/createInvoice/createInvoiceSelector.js +37 -10
- package/lib/view/invoicing/discountAction/discountActionEpic.d.ts +2 -1
- package/lib/view/invoicing/discountAction/discountActionEpic.js +32 -8
- package/lib/view/invoicing/dunningAction/dunningActionEpic.d.ts +2 -1
- package/lib/view/invoicing/dunningAction/dunningActionEpic.js +34 -8
- package/lib/view/invoicing/editInvoicingCatalogItemDetailView/catalogDetailEditPayload.d.ts +3 -1
- package/lib/view/invoicing/editInvoicingCatalogItemDetailView/catalogDetailEditPayload.js +5 -1
- package/lib/view/invoicing/editInvoicingCatalogItemDetailView/saveInvoicingCatalogItemEpic.d.ts +2 -1
- package/lib/view/invoicing/editInvoicingCatalogItemDetailView/saveInvoicingCatalogItemEpic.js +31 -4
- package/lib/view/invoicing/editInvoicingCouponDetailView/saveInvoicingCouponEpic.d.ts +2 -1
- package/lib/view/invoicing/editInvoicingCouponDetailView/saveInvoicingCouponEpic.js +22 -2
- package/lib/view/invoicing/editInvoicingCustomerDetailView/saveInvoicingCustomerEpic.d.ts +2 -1
- package/lib/view/invoicing/editInvoicingCustomerDetailView/saveInvoicingCustomerEpic.js +23 -3
- package/lib/view/invoicing/editInvoicingSubscriptionDetailView/saveInvoicingSubscriptionEpic.d.ts +2 -1
- package/lib/view/invoicing/editInvoicingSubscriptionDetailView/saveInvoicingSubscriptionEpic.js +23 -3
- package/lib/view/invoicing/editInvoicingSubscriptionDetailView/syncInvoicingSubscriptionCouponsEpic.d.ts +2 -1
- package/lib/view/invoicing/editInvoicingSubscriptionDetailView/syncInvoicingSubscriptionCouponsEpic.js +19 -2
- package/lib/view/invoicing/invoiceAction/invoiceActionEpic.d.ts +2 -1
- package/lib/view/invoicing/invoiceAction/invoiceActionEpic.js +59 -16
- package/lib/view/invoicing/invoicingConfigView/invoicingConfigViewPayload.d.ts +13 -0
- package/lib/view/invoicing/invoicingConfigView/invoicingConfigViewReducer.d.ts +1 -1
- package/lib/view/invoicing/invoicingConfigView/invoicingConfigViewReducer.js +30 -0
- package/lib/view/invoicing/invoicingConfigView/invoicingConfigViewSelector.d.ts +11 -31
- package/lib/view/invoicing/invoicingConfigView/invoicingConfigViewSelector.js +4 -29
- package/lib/view/invoicing/invoicingConfigView/invoicingConfigViewState.d.ts +15 -0
- package/lib/view/invoicing/invoicingQboView/epics/invoicingQboViewActionType.d.ts +2 -1
- package/lib/view/invoicing/invoicingQboView/epics/retryInvoicingQboSyncTaskEpic.js +28 -9
- package/lib/view/invoicing/invoicingQboView/epics/startInvoicingQboBackfillEpic.js +27 -4
- package/lib/view/invoicing/issueCreditNote/issueCreditNoteEpic.d.ts +2 -1
- package/lib/view/invoicing/issueCreditNote/issueCreditNoteEpic.js +23 -3
- package/lib/view/invoicing/issueCreditNote/issueCreditNoteSelector.d.ts +24 -7
- package/lib/view/invoicing/issueCreditNote/issueCreditNoteSelector.js +23 -16
- package/lib/view/invoicing/recordPayment/recordPaymentEpic.d.ts +2 -1
- package/lib/view/invoicing/recordPayment/recordPaymentEpic.js +45 -6
- package/lib/view/invoicing/settingsView/settingsViewEpics.d.ts +2 -1
- package/lib/view/invoicing/settingsView/settingsViewEpics.js +25 -7
- package/lib/view/invoicing/settingsView/settingsViewReducer.d.ts +10 -1
- package/lib/view/invoicing/settingsView/settingsViewReducer.js +1 -1
- package/lib/view/invoicing/settingsView/settingsViewSelector.d.ts +4 -2
- package/lib/view/invoicing/settingsView/settingsViewSelector.js +4 -1
- package/lib/view/invoicing/subscriptionAction/subscriptionActionEpic.d.ts +2 -1
- package/lib/view/invoicing/subscriptionAction/subscriptionActionEpic.js +40 -8
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsReducer.d.ts +1 -1
- package/lib/view/vendorFiling1099/vendorFiling1099UploadDetails/vendorFiling1099UploadDetailsReducer.js +5 -2
- package/lib/view/vendorTabView/vendorTabViewReducer.d.ts +1 -1
- package/lib/view/vendorTabView/vendorTabViewReducer.js +5 -2
- package/package.json +1 -1
- package/lib/__testHelpers__/apiFailure.json +0 -6
- package/lib/entity/vendor/__mocks__/vendorMock.d.ts +0 -7
- package/lib/entity/vendor/__mocks__/vendorMock.js +0 -311
- package/lib/entity/vendor/__mocks__/vendorStateMocks.d.ts +0 -8
- package/lib/entity/vendor/__mocks__/vendorStateMocks.js +0 -415
- package/lib/view/accountMappingView/__mocks__/accountMappingSelectorMock.d.ts +0 -11
- package/lib/view/accountMappingView/__mocks__/accountMappingSelectorMock.js +0 -4659
- package/lib/view/addressView/__mocks__/addressViewMocks.d.ts +0 -35
- package/lib/view/addressView/__mocks__/addressViewMocks.js +0 -239
- package/lib/view/addressView/__mocks__/json/createAddressResponse.json +0 -23
- package/lib/view/addressView/__mocks__/json/createCompanyAddressSuccess.json +0 -258
- package/lib/view/addressView/__mocks__/json/createCompanyUserAddressSuccess.json +0 -418
- package/lib/view/addressView/__mocks__/json/fetchAddressResponse.json +0 -24
- package/lib/view/addressView/__mocks__/json/updateAddressResponse.json +0 -24
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { CompanyAddressCreateResponse, CompanyUserAddressCreateResponse } from '../../companyView/companyViewPayload';
|
|
2
|
-
import { AddressesResponse } from '../addressViewPayload';
|
|
3
|
-
import { AddressUpdatableInfo, AddressViewState, NewAddressData } from '../addressViewState';
|
|
4
|
-
declare const createAddressSuccessResponse: AddressesResponse;
|
|
5
|
-
declare const createAddressFailureResponse: AddressesResponse;
|
|
6
|
-
declare const updateAddressSuccessResponse: AddressesResponse;
|
|
7
|
-
declare const updateAddressFailureResponse: AddressesResponse;
|
|
8
|
-
declare const createCompanyAddressResponse: CompanyAddressCreateResponse;
|
|
9
|
-
declare const createCompanyAddressResponseFailure: CompanyAddressCreateResponse;
|
|
10
|
-
declare const createCompanyUserAddressResponse: CompanyUserAddressCreateResponse;
|
|
11
|
-
declare const createCompanyUserAddressResponseFailure: CompanyUserAddressCreateResponse;
|
|
12
|
-
declare const fetchAddressSuccessResponse: AddressesResponse;
|
|
13
|
-
declare const fetchAddressFailureResponse: AddressesResponse;
|
|
14
|
-
declare const createAddressData: AddressUpdatableInfo;
|
|
15
|
-
declare const createAddressChangeOnlyData: AddressUpdatableInfo;
|
|
16
|
-
declare const createAddressId = "a_72f1f8a4-1251-4445-8709-c1fd2f6effe7";
|
|
17
|
-
declare const companyId = "c_1ad773dc-2395-4fa7-9fbc-3f1c5f06a333";
|
|
18
|
-
declare const userId = "u_c8488936-ba06-4533-89a5-d40d12b36071";
|
|
19
|
-
declare const fetchAddressId = "a_8a1498b2-ab42-4c46-bda1-3bd946ec3cc3";
|
|
20
|
-
declare const updateAddressData: AddressUpdatableInfo;
|
|
21
|
-
declare const updateAddressId = "a_0bd3a94a-482c-430e-b5f2-10c16d3cee5c";
|
|
22
|
-
declare const fetchAddressInProgressState: AddressViewState;
|
|
23
|
-
declare const fetchAddressSuccessState: AddressViewState;
|
|
24
|
-
declare const fetchAddressFailureState: AddressViewState;
|
|
25
|
-
declare const createAddressInLocalStoreState: AddressViewState;
|
|
26
|
-
declare const addressesInLocalStoreState: AddressViewState;
|
|
27
|
-
declare const addressesInLocalStoreAfterResetState: AddressViewState;
|
|
28
|
-
declare const createVendorAddressInLocalStoreState: AddressViewState;
|
|
29
|
-
declare const createAddressInLocalStoreStateSaveInProgress: AddressViewState;
|
|
30
|
-
declare const createOfficial1AddressInLocalStoreState: AddressViewState;
|
|
31
|
-
declare const officer1AddressInLocalStoreStateCompleted: AddressViewState;
|
|
32
|
-
declare const createUserAddressInLocalStoreState: AddressViewState;
|
|
33
|
-
declare const addressSelectorNewAddress: NewAddressData;
|
|
34
|
-
declare const removeNewAddressState: AddressViewState;
|
|
35
|
-
export { userId, companyId, fetchAddressId, fetchAddressInProgressState, fetchAddressSuccessState, fetchAddressFailureState, fetchAddressSuccessResponse, fetchAddressFailureResponse, createAddressId, createAddressData, createAddressSuccessResponse, createAddressFailureResponse, updateAddressData, updateAddressId, updateAddressSuccessResponse, updateAddressFailureResponse, createAddressChangeOnlyData, createAddressInLocalStoreState, createVendorAddressInLocalStoreState, createCompanyAddressResponse, createCompanyAddressResponseFailure, createCompanyUserAddressResponse, createCompanyUserAddressResponseFailure, createOfficial1AddressInLocalStoreState, createAddressInLocalStoreStateSaveInProgress, addressSelectorNewAddress, officer1AddressInLocalStoreStateCompleted, createUserAddressInLocalStoreState, addressesInLocalStoreState, addressesInLocalStoreAfterResetState, removeNewAddressState, };
|
|
@@ -1,239 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.removeNewAddressState = exports.addressesInLocalStoreAfterResetState = exports.addressesInLocalStoreState = exports.createUserAddressInLocalStoreState = exports.officer1AddressInLocalStoreStateCompleted = exports.addressSelectorNewAddress = exports.createAddressInLocalStoreStateSaveInProgress = exports.createOfficial1AddressInLocalStoreState = exports.createCompanyUserAddressResponseFailure = exports.createCompanyUserAddressResponse = exports.createCompanyAddressResponseFailure = exports.createCompanyAddressResponse = exports.createVendorAddressInLocalStoreState = exports.createAddressInLocalStoreState = exports.createAddressChangeOnlyData = exports.updateAddressFailureResponse = exports.updateAddressSuccessResponse = exports.updateAddressId = exports.updateAddressData = exports.createAddressFailureResponse = exports.createAddressSuccessResponse = exports.createAddressData = exports.createAddressId = exports.fetchAddressFailureResponse = exports.fetchAddressSuccessResponse = exports.fetchAddressFailureState = exports.fetchAddressSuccessState = exports.fetchAddressInProgressState = exports.fetchAddressId = exports.companyId = exports.userId = void 0;
|
|
7
|
-
const apiFailure_json_1 = __importDefault(require("../../../__testHelpers__/apiFailure.json"));
|
|
8
|
-
const addressViewReducer_1 = require("../addressViewReducer");
|
|
9
|
-
const createAddressResponse_json_1 = __importDefault(require("./json/createAddressResponse.json"));
|
|
10
|
-
const createCompanyAddressSuccess_json_1 = __importDefault(require("./json/createCompanyAddressSuccess.json"));
|
|
11
|
-
const createCompanyUserAddressSuccess_json_1 = __importDefault(require("./json/createCompanyUserAddressSuccess.json"));
|
|
12
|
-
const fetchAddressResponse_json_1 = __importDefault(require("./json/fetchAddressResponse.json"));
|
|
13
|
-
const updateAddressResponse_json_1 = __importDefault(require("./json/updateAddressResponse.json"));
|
|
14
|
-
const createAddressSuccessResponse = createAddressResponse_json_1.default;
|
|
15
|
-
exports.createAddressSuccessResponse = createAddressSuccessResponse;
|
|
16
|
-
const createAddressFailureResponse = apiFailure_json_1.default;
|
|
17
|
-
exports.createAddressFailureResponse = createAddressFailureResponse;
|
|
18
|
-
const updateAddressSuccessResponse = updateAddressResponse_json_1.default;
|
|
19
|
-
exports.updateAddressSuccessResponse = updateAddressSuccessResponse;
|
|
20
|
-
const updateAddressFailureResponse = apiFailure_json_1.default;
|
|
21
|
-
exports.updateAddressFailureResponse = updateAddressFailureResponse;
|
|
22
|
-
const createCompanyAddressResponse = createCompanyAddressSuccess_json_1.default;
|
|
23
|
-
exports.createCompanyAddressResponse = createCompanyAddressResponse;
|
|
24
|
-
const createCompanyAddressResponseFailure = apiFailure_json_1.default;
|
|
25
|
-
exports.createCompanyAddressResponseFailure = createCompanyAddressResponseFailure;
|
|
26
|
-
const createCompanyUserAddressResponse = createCompanyUserAddressSuccess_json_1.default;
|
|
27
|
-
exports.createCompanyUserAddressResponse = createCompanyUserAddressResponse;
|
|
28
|
-
const createCompanyUserAddressResponseFailure = apiFailure_json_1.default;
|
|
29
|
-
exports.createCompanyUserAddressResponseFailure = createCompanyUserAddressResponseFailure;
|
|
30
|
-
const fetchAddressSuccessResponse = fetchAddressResponse_json_1.default;
|
|
31
|
-
exports.fetchAddressSuccessResponse = fetchAddressSuccessResponse;
|
|
32
|
-
const fetchAddressFailureResponse = apiFailure_json_1.default;
|
|
33
|
-
exports.fetchAddressFailureResponse = fetchAddressFailureResponse;
|
|
34
|
-
const createAddressData = {
|
|
35
|
-
city: 'New York',
|
|
36
|
-
country: 'USA',
|
|
37
|
-
state: 'New York',
|
|
38
|
-
street: ['435 W 31st St', 'Suite 123'],
|
|
39
|
-
postalCode: '10001',
|
|
40
|
-
};
|
|
41
|
-
exports.createAddressData = createAddressData;
|
|
42
|
-
const createAddressChangeOnlyData = Object.assign({}, {
|
|
43
|
-
...createAddressData,
|
|
44
|
-
isChangesInResponseOnly: true,
|
|
45
|
-
});
|
|
46
|
-
exports.createAddressChangeOnlyData = createAddressChangeOnlyData;
|
|
47
|
-
const createAddressId = 'a_72f1f8a4-1251-4445-8709-c1fd2f6effe7';
|
|
48
|
-
exports.createAddressId = createAddressId;
|
|
49
|
-
const companyId = 'c_1ad773dc-2395-4fa7-9fbc-3f1c5f06a333';
|
|
50
|
-
exports.companyId = companyId;
|
|
51
|
-
const userId = 'u_c8488936-ba06-4533-89a5-d40d12b36071';
|
|
52
|
-
exports.userId = userId;
|
|
53
|
-
const fetchAddressId = 'a_8a1498b2-ab42-4c46-bda1-3bd946ec3cc3';
|
|
54
|
-
exports.fetchAddressId = fetchAddressId;
|
|
55
|
-
const updateAddressData = {
|
|
56
|
-
latitude: 37.786175,
|
|
57
|
-
longitude: -122.3898194,
|
|
58
|
-
city: 'San francisco',
|
|
59
|
-
country: 'USA',
|
|
60
|
-
state: 'California',
|
|
61
|
-
street: ['129 Bryant St', 'Suite 204'],
|
|
62
|
-
postalCode: '94105',
|
|
63
|
-
};
|
|
64
|
-
exports.updateAddressData = updateAddressData;
|
|
65
|
-
const updateAddressId = 'a_0bd3a94a-482c-430e-b5f2-10c16d3cee5c';
|
|
66
|
-
exports.updateAddressId = updateAddressId;
|
|
67
|
-
const fetchAddressInProgressState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
68
|
-
fetchAddressState: {
|
|
69
|
-
[fetchAddressId]: {
|
|
70
|
-
fetchState: 'In-Progress',
|
|
71
|
-
error: undefined,
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
});
|
|
75
|
-
exports.fetchAddressInProgressState = fetchAddressInProgressState;
|
|
76
|
-
const fetchAddressSuccessState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
77
|
-
fetchAddressState: {
|
|
78
|
-
[fetchAddressId]: {
|
|
79
|
-
fetchState: 'Completed',
|
|
80
|
-
error: undefined,
|
|
81
|
-
},
|
|
82
|
-
},
|
|
83
|
-
});
|
|
84
|
-
exports.fetchAddressSuccessState = fetchAddressSuccessState;
|
|
85
|
-
const fetchAddressFailureState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
86
|
-
fetchAddressState: {
|
|
87
|
-
[fetchAddressId]: {
|
|
88
|
-
fetchState: 'Error',
|
|
89
|
-
error: fetchAddressFailureResponse.status,
|
|
90
|
-
},
|
|
91
|
-
},
|
|
92
|
-
});
|
|
93
|
-
exports.fetchAddressFailureState = fetchAddressFailureState;
|
|
94
|
-
const createAddressInLocalStoreState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
95
|
-
newAddressState: {
|
|
96
|
-
company_address: {
|
|
97
|
-
addressToCreate: createAddressData,
|
|
98
|
-
addressType: 'company_address',
|
|
99
|
-
parentEntityId: undefined,
|
|
100
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
101
|
-
newAddressId: undefined,
|
|
102
|
-
},
|
|
103
|
-
},
|
|
104
|
-
});
|
|
105
|
-
exports.createAddressInLocalStoreState = createAddressInLocalStoreState;
|
|
106
|
-
const addressesInLocalStoreState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
107
|
-
newAddressState: {
|
|
108
|
-
company_address: {
|
|
109
|
-
addressToCreate: createAddressData,
|
|
110
|
-
addressType: 'company_address',
|
|
111
|
-
parentEntityId: undefined,
|
|
112
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
113
|
-
newAddressId: undefined,
|
|
114
|
-
},
|
|
115
|
-
user_address: {
|
|
116
|
-
addressToCreate: createAddressData,
|
|
117
|
-
addressType: 'user_address',
|
|
118
|
-
parentEntityId: undefined,
|
|
119
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
120
|
-
newAddressId: undefined,
|
|
121
|
-
},
|
|
122
|
-
},
|
|
123
|
-
});
|
|
124
|
-
exports.addressesInLocalStoreState = addressesInLocalStoreState;
|
|
125
|
-
const addressesInLocalStoreAfterResetState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
126
|
-
newAddressState: {
|
|
127
|
-
company_address: {
|
|
128
|
-
addressToCreate: undefined,
|
|
129
|
-
addressType: 'company_address',
|
|
130
|
-
parentEntityId: undefined,
|
|
131
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
132
|
-
newAddressId: undefined,
|
|
133
|
-
},
|
|
134
|
-
officer_1_address: {
|
|
135
|
-
addressToCreate: undefined,
|
|
136
|
-
},
|
|
137
|
-
user_address: {
|
|
138
|
-
addressToCreate: createAddressData,
|
|
139
|
-
addressType: 'user_address',
|
|
140
|
-
parentEntityId: undefined,
|
|
141
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
142
|
-
newAddressId: undefined,
|
|
143
|
-
},
|
|
144
|
-
},
|
|
145
|
-
});
|
|
146
|
-
exports.addressesInLocalStoreAfterResetState = addressesInLocalStoreAfterResetState;
|
|
147
|
-
const createVendorAddressInLocalStoreState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
148
|
-
newAddressState: {
|
|
149
|
-
vendor_address: {
|
|
150
|
-
addressToCreate: createAddressData,
|
|
151
|
-
addressType: 'vendor_address',
|
|
152
|
-
parentEntityId: undefined,
|
|
153
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
154
|
-
newAddressId: undefined,
|
|
155
|
-
},
|
|
156
|
-
},
|
|
157
|
-
});
|
|
158
|
-
exports.createVendorAddressInLocalStoreState = createVendorAddressInLocalStoreState;
|
|
159
|
-
const createAddressInLocalStoreStateSaveInProgress = Object.assign({}, addressViewReducer_1.initialState, {
|
|
160
|
-
newAddressState: {
|
|
161
|
-
company_address: {
|
|
162
|
-
addressToCreate: createAddressData,
|
|
163
|
-
addressType: 'company_address',
|
|
164
|
-
parentEntityId: undefined,
|
|
165
|
-
newAddressId: undefined,
|
|
166
|
-
status: {
|
|
167
|
-
error: undefined,
|
|
168
|
-
fetchState: 'In-Progress',
|
|
169
|
-
},
|
|
170
|
-
},
|
|
171
|
-
},
|
|
172
|
-
});
|
|
173
|
-
exports.createAddressInLocalStoreStateSaveInProgress = createAddressInLocalStoreStateSaveInProgress;
|
|
174
|
-
const createOfficial1AddressInLocalStoreState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
175
|
-
newAddressState: {
|
|
176
|
-
officer_1_address: {
|
|
177
|
-
addressToCreate: createAddressData,
|
|
178
|
-
addressType: 'officer_1_address',
|
|
179
|
-
parentEntityId: { id: userId, entityType: 'user' },
|
|
180
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
181
|
-
newAddressId: undefined,
|
|
182
|
-
},
|
|
183
|
-
},
|
|
184
|
-
});
|
|
185
|
-
exports.createOfficial1AddressInLocalStoreState = createOfficial1AddressInLocalStoreState;
|
|
186
|
-
const officer1AddressInLocalStoreStateCompleted = Object.assign({}, addressViewReducer_1.initialState, {
|
|
187
|
-
newAddressState: {
|
|
188
|
-
officer_1_address: {
|
|
189
|
-
addressToCreate: createAddressData,
|
|
190
|
-
addressType: 'officer_1_address',
|
|
191
|
-
parentEntityId: { id: userId, entityType: 'user' },
|
|
192
|
-
status: { fetchState: 'Completed', error: undefined },
|
|
193
|
-
newAddressId: 'a_72f1f8a4-1251-4445-8709-c1fd2f6effe7',
|
|
194
|
-
},
|
|
195
|
-
},
|
|
196
|
-
});
|
|
197
|
-
exports.officer1AddressInLocalStoreStateCompleted = officer1AddressInLocalStoreStateCompleted;
|
|
198
|
-
const createUserAddressInLocalStoreState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
199
|
-
newAddressState: {
|
|
200
|
-
user_address: {
|
|
201
|
-
addressToCreate: createAddressData,
|
|
202
|
-
addressType: 'user_address',
|
|
203
|
-
parentEntityId: { id: userId, entityType: 'user' },
|
|
204
|
-
status: { fetchState: 'Not-Started', error: undefined },
|
|
205
|
-
newAddressId: undefined,
|
|
206
|
-
},
|
|
207
|
-
},
|
|
208
|
-
});
|
|
209
|
-
exports.createUserAddressInLocalStoreState = createUserAddressInLocalStoreState;
|
|
210
|
-
const addressSelectorNewAddress = {
|
|
211
|
-
addressToCreate: {
|
|
212
|
-
city: 'New York',
|
|
213
|
-
country: 'USA',
|
|
214
|
-
state: 'New York',
|
|
215
|
-
street: ['435 W 31st St', 'Suite 123'],
|
|
216
|
-
postalCode: '10001',
|
|
217
|
-
},
|
|
218
|
-
addressType: 'officer_1_address',
|
|
219
|
-
parentEntityId: {
|
|
220
|
-
id: 'u_c8488936-ba06-4533-89a5-d40d12b36071',
|
|
221
|
-
entityType: 'user',
|
|
222
|
-
},
|
|
223
|
-
newAddressId: 'a_72f1f8a4-1251-4445-8709-c1fd2f6effe7',
|
|
224
|
-
status: { fetchState: 'Completed' },
|
|
225
|
-
};
|
|
226
|
-
exports.addressSelectorNewAddress = addressSelectorNewAddress;
|
|
227
|
-
const removeNewAddressState = Object.assign({}, addressViewReducer_1.initialState, {
|
|
228
|
-
newAddressState: {
|
|
229
|
-
addressToCreate: undefined,
|
|
230
|
-
addressType: 'company_address',
|
|
231
|
-
newAddressId: undefined,
|
|
232
|
-
parentEntityId: undefined,
|
|
233
|
-
status: {
|
|
234
|
-
error: undefined,
|
|
235
|
-
fetchState: 'Not-Started',
|
|
236
|
-
},
|
|
237
|
-
},
|
|
238
|
-
});
|
|
239
|
-
exports.removeNewAddressState = removeNewAddressState;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"status": {
|
|
3
|
-
"message": "Successful",
|
|
4
|
-
"code": 200
|
|
5
|
-
},
|
|
6
|
-
"data": {
|
|
7
|
-
"addresses": [
|
|
8
|
-
{
|
|
9
|
-
"city": "New York",
|
|
10
|
-
"update_time": "2022-01-10T17:12:55.270640",
|
|
11
|
-
"country": "USA",
|
|
12
|
-
"address_id": "a_72f1f8a4-1251-4445-8709-c1fd2f6effe7",
|
|
13
|
-
"longitude": null,
|
|
14
|
-
"state": "New York",
|
|
15
|
-
"street": ["435 W 31st St", "Suite 123"],
|
|
16
|
-
"create_time": "2022-01-10T17:12:55.270633",
|
|
17
|
-
"country_code": null,
|
|
18
|
-
"latitude": null,
|
|
19
|
-
"postal_code": "10001"
|
|
20
|
-
}
|
|
21
|
-
]
|
|
22
|
-
}
|
|
23
|
-
}
|
|
@@ -1,258 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"status": {
|
|
3
|
-
"message": "Successful",
|
|
4
|
-
"code": 200
|
|
5
|
-
},
|
|
6
|
-
"data": {
|
|
7
|
-
"companies": [
|
|
8
|
-
{
|
|
9
|
-
"status": {
|
|
10
|
-
"code": "onboarding",
|
|
11
|
-
"name": null
|
|
12
|
-
},
|
|
13
|
-
"subscription_billing_address_id": "a_72f1f8a4-1251-4445-8709-c1fd2f6effe7",
|
|
14
|
-
"company_money_raised_max": 50000,
|
|
15
|
-
"company_description": null,
|
|
16
|
-
"company_url": "fingo.ai",
|
|
17
|
-
"book_close_date": null,
|
|
18
|
-
"is_bill_pay_feature_enabled": false,
|
|
19
|
-
"is_reimbursement_feature_enabled": true,
|
|
20
|
-
"is_deposit_accounts_feature_enabled": true,
|
|
21
|
-
"is_same_day_ach_enabled": true,
|
|
22
|
-
"is_feature_vendor_listing_enabled": true,
|
|
23
|
-
"onboarding_user_ids": [],
|
|
24
|
-
"is_zeni_coa_in_use": true,
|
|
25
|
-
"is_subsidiary": false,
|
|
26
|
-
"is_onboarding_completed": false,
|
|
27
|
-
"is_onboarding_company_details_step_completed": false,
|
|
28
|
-
"parent_company_id": null,
|
|
29
|
-
"bill_pay_info": {
|
|
30
|
-
"bill_pay_tos_acceptance_user_id": null,
|
|
31
|
-
"bill_pay_tos_acceptance_user_agent": null,
|
|
32
|
-
"bill_pay_tos_acceptance_time": null,
|
|
33
|
-
"bill_pay_tos_acceptance_ip": null,
|
|
34
|
-
"is_bill_pay_tos_accepted": false,
|
|
35
|
-
"is_bill_pay_enabled": false,
|
|
36
|
-
"is_business_verified": false,
|
|
37
|
-
"is_ready_for_verification": false,
|
|
38
|
-
"is_international_wire_enabled": false,
|
|
39
|
-
"is_vendor_magic_link_feature_enabled": false,
|
|
40
|
-
"business_verification_status": {
|
|
41
|
-
"code": "in_progress",
|
|
42
|
-
"name": "In Progress"
|
|
43
|
-
},
|
|
44
|
-
"company_verification_status": {
|
|
45
|
-
"code": "in_progress",
|
|
46
|
-
"name": "In Progress"
|
|
47
|
-
},
|
|
48
|
-
"is_bill_payment_account_setup": false,
|
|
49
|
-
"bill_payment_account_ids": ["3f3181d2-76de-40c2-8f3b-152d2c6726d7"],
|
|
50
|
-
"users_for_verification": ["u_e1fb3ecf-83a4-4477-8930-ad60bb010044"],
|
|
51
|
-
"is_bill_pay_approval_enabled": true,
|
|
52
|
-
"schedule_pay_now_cutoff_time_by_payment_method": {
|
|
53
|
-
"ach": "2022-08-26T20:00:00+00:00"
|
|
54
|
-
},
|
|
55
|
-
"primary_funding_account": {
|
|
56
|
-
"account_id": null,
|
|
57
|
-
"account_type": null
|
|
58
|
-
},
|
|
59
|
-
"international_wire_onboarding_status": {
|
|
60
|
-
"code": "verified",
|
|
61
|
-
"name": "Verified"
|
|
62
|
-
},
|
|
63
|
-
"international_wire_onboarding_details": {}
|
|
64
|
-
},
|
|
65
|
-
"reimbursement_info": {
|
|
66
|
-
"is_reimbursement_enabled": true,
|
|
67
|
-
"reimbursement_tos_acceptance_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
|
|
68
|
-
"reimbursement_tos_acceptance_time": "2022-08-12T06:08:24.590000",
|
|
69
|
-
"reimbursement_tos_acceptance_user_id": "u_c8488936-ba06-4533-89a5-d40d12b36071",
|
|
70
|
-
"is_reimbursement_tos_accepted": true,
|
|
71
|
-
"reimbursement_tos_acceptance_ip": "43.250.156.219",
|
|
72
|
-
"primary_funding_account": {
|
|
73
|
-
"account_id": "pay_acc_f700239b-bab3-4abc-b482-6aa733a12d0d",
|
|
74
|
-
"account_type": "payment_account"
|
|
75
|
-
}
|
|
76
|
-
},
|
|
77
|
-
"deposit_accounts_info": {
|
|
78
|
-
"is_deposit_accounts_enabled": true,
|
|
79
|
-
"deposit_accounts_tos_acceptance_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
|
|
80
|
-
"deposit_accounts_tos_acceptance_time": "2022-08-12T06:08:24.590000",
|
|
81
|
-
"deposit_accounts_tos_acceptance_user_id": "u_c8488936-ba06-4533-89a5-d40d12b36071",
|
|
82
|
-
"is_deposit_accounts_tos_accepted": true,
|
|
83
|
-
"deposit_accounts_tos_acceptance_ip": "43.250.156.219",
|
|
84
|
-
"primary_funding_account": {
|
|
85
|
-
"account_id": null,
|
|
86
|
-
"account_type": null
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"charge_cards_info": {
|
|
90
|
-
"charge_cards_credit_account_limit": 50000,
|
|
91
|
-
"is_company_interested_in_charge_card": true,
|
|
92
|
-
"charge_cards_tos_acceptance_time": "2023-12-18T08:07:26.864486",
|
|
93
|
-
"charge_cards_tos_acceptance_user_id": "u_1c176a71-77f9-428c-bf32-f90396024326",
|
|
94
|
-
"charge_cards_tos_acceptance_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36",
|
|
95
|
-
"charge_cards_tos_acceptance_ip": "219.91.160.34",
|
|
96
|
-
"is_charge_cards_tos_accepted": true,
|
|
97
|
-
"is_charge_cards_enabled": false,
|
|
98
|
-
"primary_funding_account": {
|
|
99
|
-
"account_id": null,
|
|
100
|
-
"account_type": null,
|
|
101
|
-
"is_auto_pay_enabled": false
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
"debit_cards_info": {
|
|
105
|
-
"is_debit_cards_tos_accepted": true,
|
|
106
|
-
"is_debit_cards_enabled": true,
|
|
107
|
-
"debit_cards_tos_acceptance_time": "2023-11-18T08:07:26.864486",
|
|
108
|
-
"debit_cards_tos_acceptance_user_id": "u_1c176a71-77f9-428c-bf32-f90396024326",
|
|
109
|
-
"debit_cards_tos_acceptance_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36",
|
|
110
|
-
"debit_cards_tos_acceptance_ip": "219.91.160.34"
|
|
111
|
-
},
|
|
112
|
-
"mileage_rate_config": {
|
|
113
|
-
"default_mileage_unit_amount": 0.67,
|
|
114
|
-
"mileage_unit_amount": 0.655,
|
|
115
|
-
"mileage_unit": "mile",
|
|
116
|
-
"mileage_currency_code": "USD",
|
|
117
|
-
"mileage_currency_symbol": "$",
|
|
118
|
-
"denomination_conversions": {
|
|
119
|
-
"amount": 65.5,
|
|
120
|
-
"denomination": "cents",
|
|
121
|
-
"denomination_symbol": "¢"
|
|
122
|
-
},
|
|
123
|
-
"description": "62.5 cents/mile as per IRS guidelines"
|
|
124
|
-
},
|
|
125
|
-
"treasury_accounts_info": {
|
|
126
|
-
"treasury_accounts_tos_acceptance_user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36",
|
|
127
|
-
"treasury_accounts_tos_acceptance_time": "2022-08-12T06:08:24.590000",
|
|
128
|
-
"is_treasury_accounts_tos_accepted": true,
|
|
129
|
-
"treasury_accounts_tos_acceptance_ip": "43.250.156.219",
|
|
130
|
-
"treasury_accounts_tos_acceptance_user_id": "u_c8488936-ba06-4533-89a5-d40d12b36071",
|
|
131
|
-
"treasury_business_verification_verified_time": "2023-11-18T08:07:26.864486",
|
|
132
|
-
"primary_funding_account": {
|
|
133
|
-
"account_id": "pay_acc_f700239b-bab3-4abc-b482-6aa733a12d0d",
|
|
134
|
-
"account_type": "payment_account"
|
|
135
|
-
},
|
|
136
|
-
"business_verification_status": {
|
|
137
|
-
"code": "verified",
|
|
138
|
-
"name": "Verified"
|
|
139
|
-
},
|
|
140
|
-
"company_verification_status": {
|
|
141
|
-
"code": "verified",
|
|
142
|
-
"name": "Verified"
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
|
-
"source_of_funds": "alimony",
|
|
146
|
-
"is_month_end_email_in_draft": false,
|
|
147
|
-
"meeting_url": "https://calendly.com/zeni-cfo-plan/cfo-discovery-call",
|
|
148
|
-
"taxes_due_date": null,
|
|
149
|
-
"company_id": "c_1ad773dc-2395-4fa7-9fbc-3f1c5f06a333",
|
|
150
|
-
"controller_user_ids": [
|
|
151
|
-
"u_4f8f233e-9740-4511-8d1b-3fbb8311f42d",
|
|
152
|
-
"u_67e6a6a4-fab3-4e5b-a467-79a35147a0ff"
|
|
153
|
-
],
|
|
154
|
-
"customer_success_manager_user_ids": [
|
|
155
|
-
"u_4f8f233e-9740-4511-8d1b-3fbb8311f42d",
|
|
156
|
-
"u_67e6a6a4-fab3-4e5b-a467-79a35147a0ff"
|
|
157
|
-
],
|
|
158
|
-
"preparer_user_ids": [
|
|
159
|
-
"u_4f8f233e-9740-4511-8d1b-3fbb8311f42d",
|
|
160
|
-
"u_dc6565f1-f079-4f47-a579-0374dc713536"
|
|
161
|
-
],
|
|
162
|
-
"ap_analyst_user_ids": [],
|
|
163
|
-
"receiver_emails": ["fingo@zeni.ai", "abhijeet@zeni.ai"],
|
|
164
|
-
"create_time": "2020-01-27T19:24:55.432000",
|
|
165
|
-
"company_payment_processors": ["Stripe"],
|
|
166
|
-
"is_multi_currency_enabled": false,
|
|
167
|
-
"note_last_updated_user_id": null,
|
|
168
|
-
"company_finance_management_type": "We manage it ourselves",
|
|
169
|
-
"company_credit_cards": ["Brex"],
|
|
170
|
-
"is_qbo_multi_currency_enabled": false,
|
|
171
|
-
"company_inc_type": "C Corporation",
|
|
172
|
-
"connected_account_provider": "stripe",
|
|
173
|
-
"last_report_sent_date": null,
|
|
174
|
-
"last_report_sent_business_day": null,
|
|
175
|
-
"company_contact_user_id": null,
|
|
176
|
-
"taxes_filed_years": [2021, 2020],
|
|
177
|
-
"sic_code": null,
|
|
178
|
-
"note": "Hello world",
|
|
179
|
-
"company_inc_country_code": null,
|
|
180
|
-
"tax_lead_user_ids": [],
|
|
181
|
-
"note_last_update_time": null,
|
|
182
|
-
"company_status_code": "live1",
|
|
183
|
-
"company_inc_state_code": null,
|
|
184
|
-
"company_industry": "construction",
|
|
185
|
-
"company_legal_name": "Fingo Inc.",
|
|
186
|
-
"update_time": "2021-11-24T08:14:09.590788",
|
|
187
|
-
"reviewer_user_ids": [],
|
|
188
|
-
"naics_code": null,
|
|
189
|
-
"referrer_name": null,
|
|
190
|
-
"bookkeeping_software_used": "Quickbooks Online",
|
|
191
|
-
"services_requested": [
|
|
192
|
-
"Yearly Taxes",
|
|
193
|
-
"Bookkeeping & Accounting",
|
|
194
|
-
"Financial Budgeting & Projections"
|
|
195
|
-
],
|
|
196
|
-
"payroll_provider": "Trinet",
|
|
197
|
-
"company_monthly_expenses_max": 100000,
|
|
198
|
-
"phone": "+1 (732) 497-2351",
|
|
199
|
-
"company_address_id": "a_8a1498b2-ab42-4c46-bda1-3bd946ec3cc3",
|
|
200
|
-
"registered_address_id": "a_8a1498b2-ab42-4c46-bda1-3bd946ec3cc3",
|
|
201
|
-
"company_group": {
|
|
202
|
-
"id": "z4",
|
|
203
|
-
"name": null
|
|
204
|
-
},
|
|
205
|
-
"taxes_filed_date": "2021-08-24",
|
|
206
|
-
"company_inc_date": null,
|
|
207
|
-
"company_size_max": 20,
|
|
208
|
-
"company_money_raised_min": 400000,
|
|
209
|
-
"tax_id": "833464357",
|
|
210
|
-
"company_monthly_expenses_min": 0,
|
|
211
|
-
"company_size_min": 1,
|
|
212
|
-
"company_officer_user_ids": [
|
|
213
|
-
"u_3890bff3-191c-4528-867f-5869518b8078",
|
|
214
|
-
"u_964c3270-25f7-42f3-a6fc-7ef040e6d0f1",
|
|
215
|
-
"u_7def9138-9ee1-44bf-8fbb-da72d13ed720",
|
|
216
|
-
"u_50c92aa7-821e-4d50-aa30-5420e6bc2e6c",
|
|
217
|
-
"u_a50aacd8-0f74-40c3-b539-e25228c44cab",
|
|
218
|
-
"u_70dedfef-a40b-4e01-970b-b07d04b227c6",
|
|
219
|
-
"u_31d1bb27-1039-4a23-9de0-ae409d594371"
|
|
220
|
-
],
|
|
221
|
-
"name": "fingo_.ai",
|
|
222
|
-
"company_business_model": null,
|
|
223
|
-
"company_inc_country": null,
|
|
224
|
-
"primary_email_domain": "fingo.ai",
|
|
225
|
-
"company_inc_state": "Delaware",
|
|
226
|
-
"business_banks": ["Silicon Valley Bank"],
|
|
227
|
-
"tax_status": {
|
|
228
|
-
"code": "filed",
|
|
229
|
-
"name": null
|
|
230
|
-
},
|
|
231
|
-
"referrer_type": null,
|
|
232
|
-
"primary_contact_user_id": "u_7def9138-9ee1-44bf-8fbb-da72d13ed720",
|
|
233
|
-
"duns_id": null,
|
|
234
|
-
"company_group_code": "Z2",
|
|
235
|
-
"currency_code": "USD",
|
|
236
|
-
"company_finance_management_firm_name": null,
|
|
237
|
-
"is_unit_migration_tos_required": false,
|
|
238
|
-
"is_new_company_industry_verified": true,
|
|
239
|
-
"is_unit_migration_required": false
|
|
240
|
-
}
|
|
241
|
-
],
|
|
242
|
-
"addresses": [
|
|
243
|
-
{
|
|
244
|
-
"city": "San francisco",
|
|
245
|
-
"update_time": "2021-11-24T15:06:13.400611",
|
|
246
|
-
"country": "USA",
|
|
247
|
-
"address_id": "a_72f1f8a4-1251-4445-8709-c1fd2f6effe7",
|
|
248
|
-
"longitude": null,
|
|
249
|
-
"state": "California",
|
|
250
|
-
"street": ["503 Bryant St", "Suite 224"],
|
|
251
|
-
"create_time": "2021-11-24T15:06:13.400603",
|
|
252
|
-
"country_code": null,
|
|
253
|
-
"latitude": null,
|
|
254
|
-
"postal_code": "96204"
|
|
255
|
-
}
|
|
256
|
-
]
|
|
257
|
-
}
|
|
258
|
-
}
|