|
1719 | 1719 | "description": "Filter customers by source (comma-separated)", |
1720 | 1720 | "example": "SHOPIFY,API" |
1721 | 1721 | }, |
| 1722 | + { |
| 1723 | + "name": "connection_id__in", |
| 1724 | + "in": "query", |
| 1725 | + "required": false, |
| 1726 | + "schema": { |
| 1727 | + "anyOf": [ |
| 1728 | + { |
| 1729 | + "type": "string" |
| 1730 | + }, |
| 1731 | + { |
| 1732 | + "type": "null" |
| 1733 | + } |
| 1734 | + ], |
| 1735 | + "description": "Filter customers by connection ID (comma-separated)", |
| 1736 | + "title": "Connection Id In" |
| 1737 | + }, |
| 1738 | + "description": "Filter customers by connection ID (comma-separated)", |
| 1739 | + "example": "conn_abc123,conn_def456" |
| 1740 | + }, |
1722 | 1741 | { |
1723 | 1742 | "name": "order_by", |
1724 | 1743 | "in": "query", |
|
19096 | 19115 | }, |
19097 | 19116 | "status": { |
19098 | 19117 | "$ref": "#/components/schemas/RegistrationStatusEnum", |
19099 | | - "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION." |
| 19118 | + "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION, SELF_MANAGED." |
19100 | 19119 | }, |
19101 | 19120 | "country_code": { |
19102 | 19121 | "$ref": "#/components/schemas/CountryCodeEnum", |
|
20181 | 20200 | "title": "ApproveResponse", |
20182 | 20201 | "description": "Response for a successful certificate approval." |
20183 | 20202 | }, |
| 20203 | + "ArchiveByIdsRequest": { |
| 20204 | + "properties": { |
| 20205 | + "transaction_ids": { |
| 20206 | + "items": { |
| 20207 | + "type": "string" |
| 20208 | + }, |
| 20209 | + "type": "array", |
| 20210 | + "maxItems": 500, |
| 20211 | + "minItems": 1, |
| 20212 | + "title": "Transaction Ids" |
| 20213 | + } |
| 20214 | + }, |
| 20215 | + "type": "object", |
| 20216 | + "required": [ |
| 20217 | + "transaction_ids" |
| 20218 | + ], |
| 20219 | + "title": "ArchiveByIdsRequest", |
| 20220 | + "description": "Request body for archiving transactions by their IDs." |
| 20221 | + }, |
20184 | 20222 | "ArchiveTransactionsRequest": { |
20185 | 20223 | "properties": { |
20186 | 20224 | "archive_all": { |
|
20212 | 20250 | "state": { |
20213 | 20251 | "anyOf": [ |
20214 | 20252 | { |
20215 | | - "type": "string" |
| 20253 | + "items": { |
| 20254 | + "type": "string" |
| 20255 | + }, |
| 20256 | + "type": "array" |
20216 | 20257 | }, |
20217 | 20258 | { |
20218 | 20259 | "type": "null" |
|
30584 | 30625 | "type": "object", |
30585 | 30626 | "title": "CustomerUpdate" |
30586 | 30627 | }, |
30587 | | - "DNSDebugResponse": { |
30588 | | - "properties": { |
30589 | | - "timestamp": { |
30590 | | - "type": "string", |
30591 | | - "title": "Timestamp" |
30592 | | - }, |
30593 | | - "url_tests": { |
30594 | | - "items": { |
30595 | | - "$ref": "#/components/schemas/URLTestResult" |
30596 | | - }, |
30597 | | - "type": "array", |
30598 | | - "title": "Url Tests" |
30599 | | - }, |
30600 | | - "dns_tests": { |
30601 | | - "items": { |
30602 | | - "$ref": "#/components/schemas/DNSResult" |
30603 | | - }, |
30604 | | - "type": "array", |
30605 | | - "title": "Dns Tests" |
30606 | | - }, |
30607 | | - "summary": { |
30608 | | - "additionalProperties": true, |
30609 | | - "type": "object", |
30610 | | - "title": "Summary" |
30611 | | - } |
30612 | | - }, |
30613 | | - "type": "object", |
30614 | | - "required": [ |
30615 | | - "timestamp", |
30616 | | - "url_tests", |
30617 | | - "dns_tests", |
30618 | | - "summary" |
30619 | | - ], |
30620 | | - "title": "DNSDebugResponse", |
30621 | | - "description": "Complete response for DNS debugging endpoint" |
30622 | | - }, |
30623 | | - "DNSResult": { |
30624 | | - "properties": { |
30625 | | - "hostname": { |
30626 | | - "type": "string", |
30627 | | - "title": "Hostname" |
30628 | | - }, |
30629 | | - "success": { |
30630 | | - "type": "boolean", |
30631 | | - "title": "Success" |
30632 | | - }, |
30633 | | - "records": { |
30634 | | - "items": { |
30635 | | - "type": "string" |
30636 | | - }, |
30637 | | - "type": "array", |
30638 | | - "title": "Records" |
30639 | | - }, |
30640 | | - "error": { |
30641 | | - "anyOf": [ |
30642 | | - { |
30643 | | - "type": "string" |
30644 | | - }, |
30645 | | - { |
30646 | | - "type": "null" |
30647 | | - } |
30648 | | - ], |
30649 | | - "title": "Error" |
30650 | | - }, |
30651 | | - "method": { |
30652 | | - "type": "string", |
30653 | | - "title": "Method" |
30654 | | - } |
30655 | | - }, |
30656 | | - "type": "object", |
30657 | | - "required": [ |
30658 | | - "hostname", |
30659 | | - "success", |
30660 | | - "method" |
30661 | | - ], |
30662 | | - "title": "DNSResult", |
30663 | | - "description": "Result of a DNS lookup operation" |
30664 | | - }, |
30665 | 30628 | "DashboardOverviewChartType": { |
30666 | 30629 | "type": "string", |
30667 | 30630 | "enum": [ |
|
30756 | 30719 | "type": "integer", |
30757 | 30720 | "title": "Needs Tax Collection Enable Connections Count" |
30758 | 30721 | }, |
30759 | | - "needs_mark_as_tax_collecting_count": { |
30760 | | - "type": "integer", |
30761 | | - "title": "Needs Mark As Tax Collecting Count" |
30762 | | - }, |
30763 | 30722 | "read_only_sources_to_enable_tax_collection_count": { |
30764 | 30723 | "type": "integer", |
30765 | 30724 | "title": "Read Only Sources To Enable Tax Collection Count" |
|
30777 | 30736 | "needs_update_connections_count", |
30778 | 30737 | "expired_exemptions_count", |
30779 | 30738 | "needs_tax_collection_enable_connections_count", |
30780 | | - "needs_mark_as_tax_collecting_count", |
30781 | 30739 | "read_only_sources_to_enable_tax_collection_count" |
30782 | 30740 | ], |
30783 | 30741 | "title": "DashboardOverviewTasksData" |
|
45341 | 45299 | ], |
45342 | 45300 | "title": "OrganizationExperienceTasks" |
45343 | 45301 | }, |
45344 | | - "OrganizationFilingUiSettingsResponse": { |
45345 | | - "properties": { |
45346 | | - "enable_new_filing_ui": { |
45347 | | - "type": "boolean", |
45348 | | - "title": "Enable New Filing Ui" |
45349 | | - } |
45350 | | - }, |
45351 | | - "type": "object", |
45352 | | - "required": [ |
45353 | | - "enable_new_filing_ui" |
45354 | | - ], |
45355 | | - "title": "OrganizationFilingUiSettingsResponse", |
45356 | | - "description": "Subset of org settings exposed to all members for filing UI routing." |
45357 | | - }, |
45358 | 45302 | "OrganizationImportUiSettingsResponse": { |
45359 | 45303 | "properties": { |
45360 | 45304 | "file_upload_v2_enabled": { |
|
45714 | 45658 | "type": "boolean", |
45715 | 45659 | "title": "Enable New Auto Filing Experience" |
45716 | 45660 | }, |
45717 | | - "enable_new_filing_ui": { |
45718 | | - "anyOf": [ |
45719 | | - { |
45720 | | - "type": "boolean" |
45721 | | - }, |
45722 | | - { |
45723 | | - "type": "null" |
45724 | | - } |
45725 | | - ], |
45726 | | - "title": "Enable New Filing Ui" |
45727 | | - }, |
45728 | 45661 | "prefer_collected_tax_amounts": { |
45729 | 45662 | "type": "boolean", |
45730 | 45663 | "title": "Prefer Collected Tax Amounts" |
|
45821 | 45754 | "product_category_version", |
45822 | 45755 | "oss_scheme", |
45823 | 45756 | "enable_new_auto_filing_experience", |
45824 | | - "enable_new_filing_ui", |
45825 | 45757 | "prefer_collected_tax_amounts", |
45826 | 45758 | "special_tax_circumstances", |
45827 | 45759 | "enabled_jurisdictions", |
|
45879 | 45811 | ], |
45880 | 45812 | "title": "Enable New Auto Filing Experience" |
45881 | 45813 | }, |
45882 | | - "enable_new_filing_ui": { |
45883 | | - "anyOf": [ |
45884 | | - { |
45885 | | - "type": "boolean" |
45886 | | - }, |
45887 | | - { |
45888 | | - "type": "null" |
45889 | | - } |
45890 | | - ], |
45891 | | - "title": "Enable New Filing Ui" |
45892 | | - }, |
45893 | 45814 | "prefer_collected_tax_amounts": { |
45894 | 45815 | "anyOf": [ |
45895 | 45816 | { |
|
46079 | 46000 | "type": "boolean", |
46080 | 46001 | "title": "Enable New Auto Filing Experience" |
46081 | 46002 | }, |
46082 | | - "enable_new_filing_ui": { |
46083 | | - "anyOf": [ |
46084 | | - { |
46085 | | - "type": "boolean" |
46086 | | - }, |
46087 | | - { |
46088 | | - "type": "null" |
46089 | | - } |
46090 | | - ], |
46091 | | - "title": "Enable New Filing Ui" |
46092 | | - }, |
46093 | 46003 | "prefer_collected_tax_amounts": { |
46094 | 46004 | "type": "boolean", |
46095 | 46005 | "title": "Prefer Collected Tax Amounts" |
|
46150 | 46060 | "product_category_version", |
46151 | 46061 | "oss_scheme", |
46152 | 46062 | "enable_new_auto_filing_experience", |
46153 | | - "enable_new_filing_ui", |
46154 | 46063 | "prefer_collected_tax_amounts", |
46155 | 46064 | "special_tax_circumstances", |
46156 | 46065 | "enabled_jurisdictions" |
|
52517 | 52426 | }, |
52518 | 52427 | "status": { |
52519 | 52428 | "$ref": "#/components/schemas/RegistrationStatusEnum", |
52520 | | - "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION." |
| 52429 | + "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION, SELF_MANAGED." |
52521 | 52430 | }, |
52522 | 52431 | "country_code": { |
52523 | 52432 | "$ref": "#/components/schemas/CountryCodeEnum", |
|
53942 | 53851 | }, |
53943 | 53852 | "status": { |
53944 | 53853 | "$ref": "#/components/schemas/RegistrationStatusEnum", |
53945 | | - "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION." |
| 53854 | + "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION, SELF_MANAGED." |
53946 | 53855 | }, |
53947 | 53856 | "country_code": { |
53948 | 53857 | "$ref": "#/components/schemas/CountryCodeEnum", |
|
54351 | 54260 | }, |
54352 | 54261 | "status": { |
54353 | 54262 | "$ref": "#/components/schemas/RegistrationStatusEnum", |
54354 | | - "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION." |
| 54263 | + "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION, SELF_MANAGED." |
54355 | 54264 | }, |
54356 | 54265 | "country_code": { |
54357 | 54266 | "$ref": "#/components/schemas/CountryCodeEnum", |
|
54840 | 54749 | }, |
54841 | 54750 | "status": { |
54842 | 54751 | "$ref": "#/components/schemas/RegistrationStatusEnum", |
54843 | | - "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION." |
| 54752 | + "description": "The current status of the registration. Possible values: REGISTERED, PROCESSING, UNREGISTERED, DEREGISTERING, DEREGISTERED, CANCELLED, VALIDATING, AWAITING_CLARIFICATION, SELF_MANAGED." |
54844 | 54753 | }, |
54845 | 54754 | "username": { |
54846 | 54755 | "anyOf": [ |
|
64330 | 64239 | ], |
64331 | 64240 | "title": "TreatmentEnum" |
64332 | 64241 | }, |
64333 | | - "URLTestResult": { |
64334 | | - "properties": { |
64335 | | - "url": { |
64336 | | - "type": "string", |
64337 | | - "title": "Url" |
64338 | | - }, |
64339 | | - "success": { |
64340 | | - "type": "boolean", |
64341 | | - "title": "Success" |
64342 | | - }, |
64343 | | - "status_code": { |
64344 | | - "anyOf": [ |
64345 | | - { |
64346 | | - "type": "integer" |
64347 | | - }, |
64348 | | - { |
64349 | | - "type": "null" |
64350 | | - } |
64351 | | - ], |
64352 | | - "title": "Status Code" |
64353 | | - }, |
64354 | | - "response_time_ms": { |
64355 | | - "anyOf": [ |
64356 | | - { |
64357 | | - "type": "number" |
64358 | | - }, |
64359 | | - { |
64360 | | - "type": "null" |
64361 | | - } |
64362 | | - ], |
64363 | | - "title": "Response Time Ms" |
64364 | | - }, |
64365 | | - "error": { |
64366 | | - "anyOf": [ |
64367 | | - { |
64368 | | - "type": "string" |
64369 | | - }, |
64370 | | - { |
64371 | | - "type": "null" |
64372 | | - } |
64373 | | - ], |
64374 | | - "title": "Error" |
64375 | | - }, |
64376 | | - "headers": { |
64377 | | - "additionalProperties": { |
64378 | | - "type": "string" |
64379 | | - }, |
64380 | | - "type": "object", |
64381 | | - "title": "Headers" |
64382 | | - } |
64383 | | - }, |
64384 | | - "type": "object", |
64385 | | - "required": [ |
64386 | | - "url", |
64387 | | - "success" |
64388 | | - ], |
64389 | | - "title": "URLTestResult", |
64390 | | - "description": "Result of testing a URL endpoint" |
64391 | | - }, |
64392 | 64242 | "UiOrganizationCreate": { |
64393 | 64243 | "properties": { |
64394 | 64244 | "name": { |
|
0 commit comments