lockstep_rails 0.3.62 → 0.3.63

Sign up to get free protection for your applications and to get access to all the features.
@@ -2313,6 +2313,21 @@
2313
2313
  }
2314
2314
  }
2315
2315
  },
2316
+ "400": {
2317
+ "description": "Bad Request",
2318
+ "content": {
2319
+ "application/json": {
2320
+ "schema": {
2321
+ "$ref": "#/components/schemas/ProblemDetails"
2322
+ }
2323
+ },
2324
+ "text/json": {
2325
+ "schema": {
2326
+ "$ref": "#/components/schemas/ProblemDetails"
2327
+ }
2328
+ }
2329
+ }
2330
+ },
2316
2331
  "401": {
2317
2332
  "description": "Unauthorized"
2318
2333
  },
@@ -9570,7 +9585,7 @@
9570
9585
  "Invoices"
9571
9586
  ],
9572
9587
  "summary": "Retrieve invoice PDF",
9573
- "description": "Retrieves a PDF file for this invoice if it is of one of the supported invoice types and has been synced using an app enrollment to one of the supported apps.\r\n\r\nSage Intacct supports AR Invoices.\r\n\r\nQuickbooks Online supports AR Invoices, and AR Credit Memos.\r\n\r\nXero supports AR Invoices, AP Invoices, AR Credit Memos, and AP Credit Memos.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n* Member\n* Read-Only\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
9588
+ "description": "Retrieves a PDF file for this invoice if it is of one of the supported invoice types and has been synced using an app enrollment to one of the supported apps.\r\n\r\nSage Intacct supports AR Invoices.\r\n\r\nQuickBooks Online supports AR Invoices, and AR Credit Memos.\r\n\r\nXero supports AR Invoices, AP Invoices, AR Credit Memos, and AP Credit Memos.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n* Member\n* Read-Only\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
9574
9589
  "operationId": "v1_Invoices_RetrieveInvoicePdf",
9575
9590
  "parameters": [
9576
9591
  {
@@ -11348,7 +11363,7 @@
11348
11363
  "Payments"
11349
11364
  ],
11350
11365
  "summary": "Retrieve payment PDF",
11351
- "description": "Retrieves a PDF file for this payment if it has been synced using an app enrollment to one of the supported apps.\r\n\r\nQuickbooks Online supports AR Payments.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n* Member\n* Read-Only\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
11366
+ "description": "Retrieves a PDF file for this payment if it has been synced using an app enrollment to one of the supported apps.\r\n\r\nQuickBooks Online supports AR Payments.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n* Member\n* Read-Only\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
11352
11367
  "operationId": "v1_Payments_RetrievePaymentPdf",
11353
11368
  "parameters": [
11354
11369
  {
@@ -16283,6 +16298,97 @@
16283
16298
  ]
16284
16299
  }
16285
16300
  },
16301
+ "/api/v1/service-fabric/events/payments/{groupKey}": {
16302
+ "post": {
16303
+ "tags": [
16304
+ "Service-Fabric"
16305
+ ],
16306
+ "summary": "Payments Hook",
16307
+ "description": "Receives SF webhooks",
16308
+ "operationId": "v1_ServiceFabric_ReceivePaymentWebhook",
16309
+ "parameters": [
16310
+ {
16311
+ "name": "clientState",
16312
+ "in": "header",
16313
+ "description": "",
16314
+ "schema": {
16315
+ "type": "string"
16316
+ }
16317
+ },
16318
+ {
16319
+ "name": "groupKey",
16320
+ "in": "path",
16321
+ "description": "The GroupKey of the group receiving these notifications",
16322
+ "required": true,
16323
+ "schema": {
16324
+ "type": "string",
16325
+ "format": "uuid"
16326
+ }
16327
+ }
16328
+ ],
16329
+ "requestBody": {
16330
+ "description": "The SF payload",
16331
+ "content": {
16332
+ "application/json": {
16333
+ "schema": {
16334
+ "type": "array",
16335
+ "items": {
16336
+ "$ref": "#/components/schemas/SfNotification"
16337
+ }
16338
+ }
16339
+ },
16340
+ "text/json": {
16341
+ "schema": {
16342
+ "type": "array",
16343
+ "items": {
16344
+ "$ref": "#/components/schemas/SfNotification"
16345
+ }
16346
+ }
16347
+ },
16348
+ "application/*+json": {
16349
+ "schema": {
16350
+ "type": "array",
16351
+ "items": {
16352
+ "$ref": "#/components/schemas/SfNotification"
16353
+ }
16354
+ }
16355
+ }
16356
+ }
16357
+ },
16358
+ "responses": {
16359
+ "204": {
16360
+ "description": "No Content",
16361
+ "content": {
16362
+ "application/json": {
16363
+ "schema": {
16364
+ "$ref": "#/components/schemas/ActionResult"
16365
+ }
16366
+ },
16367
+ "text/json": {
16368
+ "schema": {
16369
+ "$ref": "#/components/schemas/ActionResult"
16370
+ }
16371
+ }
16372
+ }
16373
+ },
16374
+ "404": {
16375
+ "description": "Not Found",
16376
+ "content": {
16377
+ "application/json": {
16378
+ "schema": {
16379
+ "$ref": "#/components/schemas/ProblemDetails"
16380
+ }
16381
+ },
16382
+ "text/json": {
16383
+ "schema": {
16384
+ "$ref": "#/components/schemas/ProblemDetails"
16385
+ }
16386
+ }
16387
+ }
16388
+ }
16389
+ }
16390
+ }
16391
+ },
16286
16392
  "/api/v1/Status": {
16287
16393
  "get": {
16288
16394
  "tags": [
@@ -17958,6 +18064,100 @@
17958
18064
  ]
17959
18065
  }
17960
18066
  },
18067
+ "/api/v1/Transcriptions/email-reply-suggestions": {
18068
+ "post": {
18069
+ "tags": [
18070
+ "Transcriptions"
18071
+ ],
18072
+ "summary": "Retrieve an EmailReplyGeneratorResponse",
18073
+ "description": "Retrieves the Email Reply Generator Response containing a list of email reply suggestions\r\n\r\nAn Email Reply Generator Request represents an email to be sent for a list of email reply suggestions.\n\n### Roles\n\nTo call this endpoint, you must have one of these roles:\n\n* Group Owner\n* Group Admin\n* Member\n* Read-Only\n\n\nYou can view your roles with the [Status](https://developer.lockstep.io/reference/get_api-v1-status) API.",
18074
+ "operationId": "v1_Transcriptions_GetEmailReplySuggestions",
18075
+ "requestBody": {
18076
+ "description": "The Email Reply Generator Request to be sent",
18077
+ "content": {
18078
+ "application/json": {
18079
+ "schema": {
18080
+ "allOf": [
18081
+ {
18082
+ "$ref": "#/components/schemas/EmailReplyGeneratorRequest"
18083
+ }
18084
+ ],
18085
+ "description": "Represents the request to the SAGE GMS API"
18086
+ }
18087
+ },
18088
+ "text/json": {
18089
+ "schema": {
18090
+ "allOf": [
18091
+ {
18092
+ "$ref": "#/components/schemas/EmailReplyGeneratorRequest"
18093
+ }
18094
+ ],
18095
+ "description": "Represents the request to the SAGE GMS API"
18096
+ }
18097
+ },
18098
+ "application/*+json": {
18099
+ "schema": {
18100
+ "allOf": [
18101
+ {
18102
+ "$ref": "#/components/schemas/EmailReplyGeneratorRequest"
18103
+ }
18104
+ ],
18105
+ "description": "Represents the request to the SAGE GMS API"
18106
+ }
18107
+ }
18108
+ }
18109
+ },
18110
+ "responses": {
18111
+ "200": {
18112
+ "description": "Success",
18113
+ "content": {
18114
+ "application/json": {
18115
+ "schema": {
18116
+ "$ref": "#/components/schemas/EmailReplyGeneratorResponse"
18117
+ }
18118
+ },
18119
+ "text/json": {
18120
+ "schema": {
18121
+ "$ref": "#/components/schemas/EmailReplyGeneratorResponse"
18122
+ }
18123
+ }
18124
+ }
18125
+ },
18126
+ "400": {
18127
+ "description": "Bad Request",
18128
+ "content": {
18129
+ "application/json": {
18130
+ "schema": {
18131
+ "$ref": "#/components/schemas/ProblemDetails"
18132
+ }
18133
+ },
18134
+ "text/json": {
18135
+ "schema": {
18136
+ "$ref": "#/components/schemas/ProblemDetails"
18137
+ }
18138
+ }
18139
+ }
18140
+ },
18141
+ "401": {
18142
+ "description": "Unauthorized"
18143
+ },
18144
+ "403": {
18145
+ "description": "Forbidden"
18146
+ }
18147
+ },
18148
+ "security": [
18149
+ {
18150
+ "oauth2": [ ]
18151
+ },
18152
+ {
18153
+ "bearer_token": [ ]
18154
+ },
18155
+ {
18156
+ "api_key": [ ]
18157
+ }
18158
+ ]
18159
+ }
18160
+ },
17961
18161
  "/api/v1/UserAccounts/{id}": {
17962
18162
  "get": {
17963
18163
  "tags": [
@@ -20609,13 +20809,6 @@
20609
20809
  "AccountingProfileContactResultModelFetchResult": {
20610
20810
  "type": "object",
20611
20811
  "properties": {
20612
- "records": {
20613
- "type": "array",
20614
- "items": {
20615
- "$ref": "#/components/schemas/AccountingProfileContactResultModel"
20616
- },
20617
- "nullable": true
20618
- },
20619
20812
  "totalCount": {
20620
20813
  "type": "integer",
20621
20814
  "format": "int32",
@@ -20630,6 +20823,13 @@
20630
20823
  "type": "integer",
20631
20824
  "format": "int32",
20632
20825
  "nullable": true
20826
+ },
20827
+ "records": {
20828
+ "type": "array",
20829
+ "items": {
20830
+ "$ref": "#/components/schemas/AccountingProfileContactResultModel"
20831
+ },
20832
+ "nullable": true
20633
20833
  }
20634
20834
  },
20635
20835
  "additionalProperties": false
@@ -20987,6 +21187,10 @@
20987
21187
  "additionalProperties": false,
20988
21188
  "description": "An Accounting Profile is a child of a Company Profile, and collectively,\r\nthey comprise the identity and necessary information for an accounting team\r\nto work with trading partners, financial institutions, auditors, and others.\r\nYou can use Accounting Profiles to define an accounting function by what\r\nthe function does and how to interface with the function."
20989
21189
  },
21190
+ "ActionResult": {
21191
+ "type": "object",
21192
+ "additionalProperties": false
21193
+ },
20990
21194
  "ActionResultModel": {
20991
21195
  "type": "object",
20992
21196
  "properties": {
@@ -22187,7 +22391,8 @@
22187
22391
  "type": "string",
22188
22392
  "description": "The date stamp for the newest Activity on this Invoice.",
22189
22393
  "format": "date",
22190
- "nullable": true
22394
+ "nullable": true,
22395
+ "deprecated": true
22191
22396
  },
22192
22397
  "daysPastDue": {
22193
22398
  "type": "integer",
@@ -22348,6 +22553,10 @@
22348
22553
  "additionalProperties": false
22349
22554
  },
22350
22555
  "AttachmentModel": {
22556
+ "required": [
22557
+ "objectKey",
22558
+ "tableKey"
22559
+ ],
22351
22560
  "type": "object",
22352
22561
  "properties": {
22353
22562
  "attachmentId": {
@@ -22364,13 +22573,13 @@
22364
22573
  },
22365
22574
  "tableKey": {
22366
22575
  "maxLength": 40,
22367
- "minLength": 0,
22576
+ "minLength": 1,
22368
22577
  "type": "string",
22369
22578
  "description": "An Attachment is connected to an existing item within the Lockstep Platform by the fields `TableKey` and\r\n`ObjectKey`. For example, an Attachment connected to Invoice 12345 would have a `TableKey` value of\r\n`Invoice` and an `ObjectKey` value of `12345`.\r\n \r\nThe `TableKey` value contains the name of the table within the Lockstep Platform to which this Attachment\r\nis connected.\r\n \r\nFor more information, see [linking metadata to an object](https://developer.lockstep.io/docs/custom-fields#linking-metadata-to-an-object).",
22370
- "nullable": true,
22371
22579
  "readOnly": true
22372
22580
  },
22373
22581
  "objectKey": {
22582
+ "minLength": 1,
22374
22583
  "type": "string",
22375
22584
  "description": "An Attachment is connected to an existing item within the Lockstep Platform by the fields `TableKey` and\r\n`ObjectKey`. For example, an Attachment connected to Invoice 12345 would have a `TableKey` value of\r\n`Invoice` and an `ObjectKey` value of `12345`.\r\n \r\nThe `ObjectKey` value contains the primary key of the record within the Lockstep Platform to which this\r\nAttachment is connected.\r\n \r\nFor more information, see [linking metadata to an object](https://developer.lockstep.io/docs/custom-fields#linking-metadata-to-an-object).",
22376
22585
  "format": "uuid",
@@ -22636,9 +22845,14 @@
22636
22845
  "description": "Timeframe in days the cashflow report is generated on",
22637
22846
  "format": "int32"
22638
22847
  },
22848
+ "baseCurrencyCode": {
22849
+ "type": "string",
22850
+ "description": "The base currency code of the group.",
22851
+ "nullable": true
22852
+ },
22639
22853
  "paymentsCollected": {
22640
22854
  "type": "number",
22641
- "description": "Amount of payments collected based in the timeframe",
22855
+ "description": "Amount of payments collected based in the timeframe in the group's base currency",
22642
22856
  "format": "double"
22643
22857
  },
22644
22858
  "paymentsCollectedCount": {
@@ -22648,7 +22862,7 @@
22648
22862
  },
22649
22863
  "invoicesBilled": {
22650
22864
  "type": "number",
22651
- "description": "Amount of invoices billed based in the timeframe",
22865
+ "description": "Amount of invoices billed based in the timeframe in the group's base currency",
22652
22866
  "format": "double"
22653
22867
  },
22654
22868
  "invoicesBilledCount": {
@@ -23107,7 +23321,8 @@
23107
23321
  "type": "string",
23108
23322
  "description": "The name of the user who last modified this company",
23109
23323
  "nullable": true,
23110
- "readOnly": true
23324
+ "readOnly": true,
23325
+ "deprecated": true
23111
23326
  },
23112
23327
  "taxId": {
23113
23328
  "maxLength": 20,
@@ -23375,7 +23590,7 @@
23375
23590
  },
23376
23591
  "erpKey": {
23377
23592
  "type": "string",
23378
- "description": "This is the primary key of the Company record. For this field, you should use whatever the company's unique\r\nidentifying number is in the originating system. Search for a unique, non-changing number within the\r\noriginating financial system for this record.\r\n \r\nExample: If you store your company records in a database, whatever the primary key for the company table is\r\nin the database should be the `ErpKey`.\r\n \r\nExample: If you use a financial system such as Quickbooks or Xero, look for the primary ID number of the\r\ncompany record within that financial system.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns)."
23593
+ "description": "This is the primary key of the Company record. For this field, you should use whatever the company's unique\r\nidentifying number is in the originating system. Search for a unique, non-changing number within the\r\noriginating financial system for this record.\r\n \r\nExample: If you store your company records in a database, whatever the primary key for the company table is\r\nin the database should be the `ErpKey`.\r\n \r\nExample: If you use a financial system such as QuickBooks or Xero, look for the primary ID number of the\r\ncompany record within that financial system.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns)."
23379
23594
  },
23380
23595
  "companyName": {
23381
23596
  "type": "string",
@@ -24047,6 +24262,13 @@
24047
24262
  "CountryModelFetchResult": {
24048
24263
  "type": "object",
24049
24264
  "properties": {
24265
+ "records": {
24266
+ "type": "array",
24267
+ "items": {
24268
+ "$ref": "#/components/schemas/CountryModel"
24269
+ },
24270
+ "nullable": true
24271
+ },
24050
24272
  "totalCount": {
24051
24273
  "type": "integer",
24052
24274
  "format": "int32",
@@ -24061,13 +24283,6 @@
24061
24283
  "type": "integer",
24062
24284
  "format": "int32",
24063
24285
  "nullable": true
24064
- },
24065
- "records": {
24066
- "type": "array",
24067
- "items": {
24068
- "$ref": "#/components/schemas/CountryModel"
24069
- },
24070
- "nullable": true
24071
24286
  }
24072
24287
  },
24073
24288
  "additionalProperties": false
@@ -24103,6 +24318,21 @@
24103
24318
  "description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
24104
24319
  "nullable": true
24105
24320
  },
24321
+ "erpWriteStatus": {
24322
+ "allOf": [
24323
+ {
24324
+ "$ref": "#/components/schemas/ErpWriteStatuses"
24325
+ }
24326
+ ],
24327
+ "description": "Possible statuses for a record that supports ERP write.",
24328
+ "readOnly": true
24329
+ },
24330
+ "erpWriteStatusName": {
24331
+ "type": "string",
24332
+ "description": "The name of the ErpWriteStatus for this credit memo application",
24333
+ "nullable": true,
24334
+ "readOnly": true
24335
+ },
24106
24336
  "entryNumber": {
24107
24337
  "type": "integer",
24108
24338
  "description": "Reference number for the applied credit memo.",
@@ -24114,7 +24344,6 @@
24114
24344
  "format": "date-time"
24115
24345
  },
24116
24346
  "creditMemoAppliedAmount": {
24117
- "minimum": 0,
24118
24347
  "type": "number",
24119
24348
  "description": "The amount of the credit memo that was applied to the Invoice represented by `InvoiceId`.",
24120
24349
  "format": "double"
@@ -24150,6 +24379,13 @@
24150
24379
  "nullable": true,
24151
24380
  "readOnly": true
24152
24381
  },
24382
+ "sourceModifiedDate": {
24383
+ "type": "string",
24384
+ "description": "The date on which this record was last modified in source ERP.",
24385
+ "format": "date-time",
24386
+ "nullable": true,
24387
+ "readOnly": true
24388
+ },
24153
24389
  "attachments": {
24154
24390
  "type": "array",
24155
24391
  "items": {
@@ -24975,7 +25211,8 @@
24975
25211
  "type": "string",
24976
25212
  "description": "The date stamp for the newest Activity on this Customer.",
24977
25213
  "format": "date",
24978
- "nullable": true
25214
+ "nullable": true,
25215
+ "deprecated": true
24979
25216
  },
24980
25217
  "modified": {
24981
25218
  "type": "string",
@@ -25254,13 +25491,6 @@
25254
25491
  "DpoSummaryModelFetchResult": {
25255
25492
  "type": "object",
25256
25493
  "properties": {
25257
- "records": {
25258
- "type": "array",
25259
- "items": {
25260
- "$ref": "#/components/schemas/DpoSummaryModel"
25261
- },
25262
- "nullable": true
25263
- },
25264
25494
  "totalCount": {
25265
25495
  "type": "integer",
25266
25496
  "format": "int32",
@@ -25275,11 +25505,84 @@
25275
25505
  "type": "integer",
25276
25506
  "format": "int32",
25277
25507
  "nullable": true
25508
+ },
25509
+ "records": {
25510
+ "type": "array",
25511
+ "items": {
25512
+ "$ref": "#/components/schemas/DpoSummaryModel"
25513
+ },
25514
+ "nullable": true
25278
25515
  }
25279
25516
  },
25280
25517
  "additionalProperties": false
25281
25518
  },
25282
- "ErpModel": {
25519
+ "EmailReplyGeneratorRequest": {
25520
+ "required": [
25521
+ "body",
25522
+ "date",
25523
+ "subject"
25524
+ ],
25525
+ "type": "object",
25526
+ "properties": {
25527
+ "date": {
25528
+ "minLength": 1,
25529
+ "type": "string",
25530
+ "description": "The date associated with the email",
25531
+ "format": "date-time"
25532
+ },
25533
+ "body": {
25534
+ "minLength": 1,
25535
+ "type": "string",
25536
+ "description": "The body associated with the email"
25537
+ },
25538
+ "subject": {
25539
+ "minLength": 1,
25540
+ "type": "string",
25541
+ "description": "The subject associated with the email"
25542
+ }
25543
+ },
25544
+ "additionalProperties": false,
25545
+ "description": "Represents the request to the SAGE GMS API"
25546
+ },
25547
+ "EmailReplyGeneratorResponse": {
25548
+ "type": "object",
25549
+ "properties": {
25550
+ "message_id": {
25551
+ "type": "string",
25552
+ "description": "The id for this request in the GMS system",
25553
+ "format": "uuid",
25554
+ "nullable": true
25555
+ },
25556
+ "suggestions": {
25557
+ "type": "array",
25558
+ "items": {
25559
+ "$ref": "#/components/schemas/EmailReplyGeneratorSuggestions"
25560
+ },
25561
+ "description": "A list of suggested email reply responses",
25562
+ "nullable": true
25563
+ }
25564
+ },
25565
+ "additionalProperties": false,
25566
+ "description": "Represents the response from SAGE GMS API"
25567
+ },
25568
+ "EmailReplyGeneratorSuggestions": {
25569
+ "type": "object",
25570
+ "properties": {
25571
+ "kind": {
25572
+ "type": "string",
25573
+ "description": "The kind of reply generated by the GMS Api",
25574
+ "nullable": true
25575
+ },
25576
+ "body": {
25577
+ "type": "string",
25578
+ "description": "The body of the reply generated by the GMS Api",
25579
+ "nullable": true
25580
+ }
25581
+ },
25582
+ "additionalProperties": false,
25583
+ "description": "Represents the email reply suggestion from the SAGE GMS API"
25584
+ },
25585
+ "ErpModel": {
25283
25586
  "type": "object",
25284
25587
  "properties": {
25285
25588
  "erpSystemId": {
@@ -25330,6 +25633,19 @@
25330
25633
  },
25331
25634
  "additionalProperties": false
25332
25635
  },
25636
+ "ErpWriteStatuses": {
25637
+ "enum": [
25638
+ 0,
25639
+ 1,
25640
+ 2,
25641
+ 3,
25642
+ 4,
25643
+ 5
25644
+ ],
25645
+ "type": "integer",
25646
+ "description": "Possible statuses for a record that supports ERP write.",
25647
+ "format": "int32"
25648
+ },
25333
25649
  "FeatureFlagsRequestModel": {
25334
25650
  "type": "object",
25335
25651
  "properties": {
@@ -25363,6 +25679,9 @@
25363
25679
  "description": "Response information for Feature Flags"
25364
25680
  },
25365
25681
  "FinancialAccountBalanceHistoryModel": {
25682
+ "required": [
25683
+ "financialAccountId"
25684
+ ],
25366
25685
  "type": "object",
25367
25686
  "properties": {
25368
25687
  "financialAccountBalanceHistoryId": {
@@ -25378,6 +25697,7 @@
25378
25697
  "readOnly": true
25379
25698
  },
25380
25699
  "financialAccountId": {
25700
+ "minLength": 1,
25381
25701
  "type": "string",
25382
25702
  "description": "The id of the Financial Account that this balance history is for.",
25383
25703
  "format": "uuid"
@@ -25395,8 +25715,6 @@
25395
25715
  "format": "int32"
25396
25716
  },
25397
25717
  "periodNumber": {
25398
- "maximum": 13,
25399
- "minimum": 1,
25400
25718
  "type": "integer",
25401
25719
  "description": "The period number (1-12 or 1-13) that this balance history is for",
25402
25720
  "format": "int32"
@@ -25412,8 +25730,6 @@
25412
25730
  "format": "date-time"
25413
25731
  },
25414
25732
  "status": {
25415
- "maxLength": 7,
25416
- "minLength": 0,
25417
25733
  "type": "string",
25418
25734
  "description": "The status of this period. The status should be Closed if the books for this period have been closed,\r\nif not the status should be Open. The status can also be Deleted if there was a recalculation that needed\r\nto occur, for example due to a change in financial year settings.",
25419
25735
  "nullable": true
@@ -25423,6 +25739,20 @@
25423
25739
  "description": "The current or end balance of this period.",
25424
25740
  "format": "double"
25425
25741
  },
25742
+ "balanceType": {
25743
+ "allOf": [
25744
+ {
25745
+ "$ref": "#/components/schemas/FinancialAccountBalanceType"
25746
+ }
25747
+ ],
25748
+ "description": "Financial Account Balance Types"
25749
+ },
25750
+ "balanceTypeName": {
25751
+ "type": "string",
25752
+ "description": "The name of the BalanceType for this record.",
25753
+ "nullable": true,
25754
+ "readOnly": true
25755
+ },
25426
25756
  "created": {
25427
25757
  "type": "string",
25428
25758
  "description": "The date on which this financial account balance history record was created.",
@@ -25497,7 +25827,7 @@
25497
25827
  },
25498
25828
  "financialAccountErpKey": {
25499
25829
  "type": "string",
25500
- "description": "This is the primary key of the FinancialAccount record. For this field, you should use whatever the company's unique\r\nidentifying number is in the originating system. Search for a unique, non-changing number within the\r\noriginating financial system for this record.\r\nExample: If you store your company records in a database, whatever the primary key for the company table is\r\nin the database should be the ErpKey.\r\nExample: If you use a financial system such as Quickbooks or Xero, look for the primary ID number of the\r\ncompany record within that financial system.",
25830
+ "description": "This is the primary key of the FinancialAccount record. For this field, you should use whatever the company's unique\r\nidentifying number is in the originating system. Search for a unique, non-changing number within the\r\noriginating financial system for this record.\r\nExample: If you store your company records in a database, whatever the primary key for the company table is\r\nin the database should be the ErpKey.\r\nExample: If you use a financial system such as QuickBooks or Xero, look for the primary ID number of the\r\ncompany record within that financial system.",
25501
25831
  "nullable": true
25502
25832
  },
25503
25833
  "financialYear": {
@@ -25528,11 +25858,29 @@
25528
25858
  "type": "number",
25529
25859
  "description": "The current or end balance of this period.",
25530
25860
  "format": "double"
25861
+ },
25862
+ "balanceType": {
25863
+ "allOf": [
25864
+ {
25865
+ "$ref": "#/components/schemas/FinancialAccountBalanceType"
25866
+ }
25867
+ ],
25868
+ "description": "The balance type of this period. If left null, the balance type will be determined by the balance.",
25869
+ "nullable": true
25531
25870
  }
25532
25871
  },
25533
25872
  "additionalProperties": false,
25534
25873
  "description": "The FinancialAccountBalanceHistorySyncModel represents information coming into Lockstep from an external financial system or other\r\nenterprise resource planning system. To import data from an external system, convert your original data into\r\nthe FinancialAccountBalanceHistorySyncModel format and call the [Upload Sync File API](https://developer.lockstep.io/reference/post_api-v1-sync-zip).\r\nThis API retrieves all of the data you uploaded in a compressed ZIP file and imports it into the Lockstep\r\nplatform.\r\n \r\nIf the FinancialAccountBalanceHistorySyncModels are imported via a connector instead, please ensure that all records are passed in\r\non every sync. Records that are not passed in will be assumed to be deleted.\r\n \r\nOnce imported, this record will be available in the Lockstep API as a [FinancialAccountBalanceHistoryModel](https://developer.lockstep.io/docs/financialaccountbalancehistorymodel).\r\n \r\nFor more information on writing your own connector, see [Connector Data](https://developer.lockstep.io/docs/connector-data)."
25535
25874
  },
25875
+ "FinancialAccountBalanceType": {
25876
+ "enum": [
25877
+ 0,
25878
+ 1
25879
+ ],
25880
+ "type": "integer",
25881
+ "description": "Financial Account Balance Types",
25882
+ "format": "int32"
25883
+ },
25536
25884
  "FinancialAccountModel": {
25537
25885
  "type": "object",
25538
25886
  "properties": {
@@ -26341,7 +26689,6 @@
26341
26689
  "nullable": true
26342
26690
  },
26343
26691
  "unitPrice": {
26344
- "minimum": 0,
26345
26692
  "type": "number",
26346
26693
  "description": "The price of a single unit for this line.",
26347
26694
  "format": "double"
@@ -26431,6 +26778,28 @@
26431
26778
  "nullable": true,
26432
26779
  "readOnly": true
26433
26780
  },
26781
+ "erpWriteStatus": {
26782
+ "allOf": [
26783
+ {
26784
+ "$ref": "#/components/schemas/ErpWriteStatuses"
26785
+ }
26786
+ ],
26787
+ "description": "Possible statuses for a record that supports ERP write.",
26788
+ "readOnly": true
26789
+ },
26790
+ "erpWriteStatusName": {
26791
+ "type": "string",
26792
+ "description": "The name of the ErpWriteStatus for this Invoice",
26793
+ "nullable": true,
26794
+ "readOnly": true
26795
+ },
26796
+ "sourceModifiedDate": {
26797
+ "type": "string",
26798
+ "description": "The date on which this record was last modified in source ERP.",
26799
+ "format": "date-time",
26800
+ "nullable": true,
26801
+ "readOnly": true
26802
+ },
26434
26803
  "notes": {
26435
26804
  "type": "array",
26436
26805
  "items": {
@@ -26808,25 +27177,21 @@
26808
27177
  "nullable": true
26809
27178
  },
26810
27179
  "totalAmount": {
26811
- "minimum": 0,
26812
27180
  "type": "number",
26813
27181
  "description": "The total value of this invoice, inclusive of all taxes and line items in it's tendered currency.",
26814
27182
  "format": "double"
26815
27183
  },
26816
27184
  "salesTaxAmount": {
26817
- "minimum": 0,
26818
27185
  "type": "number",
26819
27186
  "description": "The total sales (or transactional) tax calculated for this invoice in it's tendered currency.",
26820
27187
  "format": "double"
26821
27188
  },
26822
27189
  "discountAmount": {
26823
- "minimum": 0,
26824
27190
  "type": "number",
26825
27191
  "description": "The total discounts given by the seller to the buyer on this invoice in it's tendered currency.",
26826
27192
  "format": "double"
26827
27193
  },
26828
27194
  "outstandingBalanceAmount": {
26829
- "minimum": 0,
26830
27195
  "type": "number",
26831
27196
  "description": "The remaining balance value of this invoice in it's tendered currency.",
26832
27197
  "format": "double"
@@ -26941,29 +27306,47 @@
26941
27306
  "format": "double"
26942
27307
  },
26943
27308
  "baseCurrencyTotalAmount": {
26944
- "minimum": 0,
26945
27309
  "type": "number",
26946
27310
  "description": "The total value of this invoice, inclusive of all taxes and line items in the group's base currency.",
26947
27311
  "format": "double"
26948
27312
  },
26949
27313
  "baseCurrencySalesTaxAmount": {
26950
- "minimum": 0,
26951
27314
  "type": "number",
26952
27315
  "description": "The total sales (or transactional) tax calculated for this invoice in the group's base currency.",
26953
27316
  "format": "double"
26954
27317
  },
26955
27318
  "baseCurrencyDiscountAmount": {
26956
- "minimum": 0,
26957
27319
  "type": "number",
26958
27320
  "description": "The total discounts given by the seller to the buyer on this invoice in the group's base currency.",
26959
27321
  "format": "double"
26960
27322
  },
26961
27323
  "baseCurrencyOutstandingBalanceAmount": {
26962
- "minimum": 0,
26963
27324
  "type": "number",
26964
27325
  "description": "The remaining balance value of this invoice in the group's base currency.",
26965
27326
  "format": "double"
26966
27327
  },
27328
+ "erpWriteStatus": {
27329
+ "allOf": [
27330
+ {
27331
+ "$ref": "#/components/schemas/ErpWriteStatuses"
27332
+ }
27333
+ ],
27334
+ "description": "Possible statuses for a record that supports ERP write.",
27335
+ "readOnly": true
27336
+ },
27337
+ "erpWriteStatusName": {
27338
+ "type": "string",
27339
+ "description": "The name of the ErpWriteStatus for this Invoice",
27340
+ "nullable": true,
27341
+ "readOnly": true
27342
+ },
27343
+ "sourceModifiedDate": {
27344
+ "type": "string",
27345
+ "description": "The date on which this record was last modified in source ERP.",
27346
+ "format": "date-time",
27347
+ "nullable": true,
27348
+ "readOnly": true
27349
+ },
26967
27350
  "addresses": {
26968
27351
  "type": "array",
26969
27352
  "items": {
@@ -27293,7 +27676,8 @@
27293
27676
  "type": "string",
27294
27677
  "description": "The date stamp for the newest Activity on this Invoice.",
27295
27678
  "format": "date",
27296
- "nullable": true
27679
+ "nullable": true,
27680
+ "deprecated": true
27297
27681
  },
27298
27682
  "daysPastDue": {
27299
27683
  "type": "integer",
@@ -28073,6 +28457,43 @@
28073
28457
  },
28074
28458
  "additionalProperties": false
28075
28459
  },
28460
+ "NotificationData": {
28461
+ "type": "object",
28462
+ "properties": {
28463
+ "subscriptionId": {
28464
+ "type": "string",
28465
+ "description": "The id of the subscription due to which this notification has been sent"
28466
+ },
28467
+ "applicationId": {
28468
+ "type": "string",
28469
+ "description": "The client application identifier",
28470
+ "nullable": true
28471
+ },
28472
+ "externalId": {
28473
+ "type": "string",
28474
+ "description": "Application unique identifier for this company",
28475
+ "format": "uuid",
28476
+ "nullable": true
28477
+ },
28478
+ "networkId": {
28479
+ "type": "string",
28480
+ "description": "Unknown"
28481
+ },
28482
+ "expirationDateTime": {
28483
+ "type": "string",
28484
+ "description": "expirationDateTime if the subscription has one",
28485
+ "format": "date-time",
28486
+ "nullable": true
28487
+ },
28488
+ "serviceAttributes": {
28489
+ "type": "object",
28490
+ "additionalProperties": { },
28491
+ "description": "Specific info about this event"
28492
+ }
28493
+ },
28494
+ "additionalProperties": false,
28495
+ "description": "Notification details"
28496
+ },
28076
28497
  "PayablesComingDueHeaderModel": {
28077
28498
  "type": "object",
28078
28499
  "properties": {
@@ -28118,30 +28539,25 @@
28118
28539
  "PayablesComingDueModel": {
28119
28540
  "type": "object",
28120
28541
  "properties": {
28121
- "dueDate": {
28122
- "type": "string",
28123
- "description": "This model represents all the payables that are\r\neither already due or due within this date.",
28124
- "format": "date-time"
28125
- },
28126
28542
  "groupKey": {
28127
28543
  "type": "string",
28128
28544
  "description": "The GroupKey uniquely identifies a single Lockstep Platform account. All records for this\r\naccount will share the same GroupKey value. GroupKey values cannot be changed once created.\r\n \r\nFor more information, see [Accounts and GroupKeys](https://developer.lockstep.io/docs/accounts-and-groupkeys).",
28129
28545
  "format": "uuid"
28130
28546
  },
28131
- "vendorName": {
28132
- "type": "string",
28133
- "description": "Name for this company",
28134
- "nullable": true
28547
+ "numberOfBillsDue": {
28548
+ "type": "integer",
28549
+ "description": "Number of bills due for this time period",
28550
+ "format": "int32"
28135
28551
  },
28136
28552
  "vendorId": {
28137
28553
  "type": "string",
28138
28554
  "description": "The unique Lockstep Id for the Vendor",
28139
28555
  "format": "uuid"
28140
28556
  },
28141
- "numberOfBillsDue": {
28142
- "type": "integer",
28143
- "description": "Number of bills due for this time period",
28144
- "format": "int32"
28557
+ "vendorName": {
28558
+ "type": "string",
28559
+ "description": "Name for this company",
28560
+ "nullable": true
28145
28561
  },
28146
28562
  "primaryContact": {
28147
28563
  "type": "string",
@@ -28162,6 +28578,11 @@
28162
28578
  "type": "number",
28163
28579
  "description": "Total amount due for this time period at the group's base currency",
28164
28580
  "format": "double"
28581
+ },
28582
+ "dueDate": {
28583
+ "type": "string",
28584
+ "description": "This model represents all the payables that are\r\neither already due or due within this date.",
28585
+ "format": "date-time"
28165
28586
  }
28166
28587
  },
28167
28588
  "additionalProperties": false,
@@ -28170,13 +28591,6 @@
28170
28591
  "PayablesComingDueModelFetchResult": {
28171
28592
  "type": "object",
28172
28593
  "properties": {
28173
- "records": {
28174
- "type": "array",
28175
- "items": {
28176
- "$ref": "#/components/schemas/PayablesComingDueModel"
28177
- },
28178
- "nullable": true
28179
- },
28180
28594
  "totalCount": {
28181
28595
  "type": "integer",
28182
28596
  "format": "int32",
@@ -28191,6 +28605,13 @@
28191
28605
  "type": "integer",
28192
28606
  "format": "int32",
28193
28607
  "nullable": true
28608
+ },
28609
+ "records": {
28610
+ "type": "array",
28611
+ "items": {
28612
+ "$ref": "#/components/schemas/PayablesComingDueModel"
28613
+ },
28614
+ "nullable": true
28194
28615
  }
28195
28616
  },
28196
28617
  "additionalProperties": false
@@ -28265,6 +28686,10 @@
28265
28686
  "description": "Represents the payables summary report based on a timeframe"
28266
28687
  },
28267
28688
  "PaymentAppliedModel": {
28689
+ "required": [
28690
+ "invoiceId",
28691
+ "paymentId"
28692
+ ],
28268
28693
  "type": "object",
28269
28694
  "properties": {
28270
28695
  "groupKey": {
@@ -28280,11 +28705,13 @@
28280
28705
  "readOnly": true
28281
28706
  },
28282
28707
  "invoiceId": {
28708
+ "minLength": 1,
28283
28709
  "type": "string",
28284
28710
  "description": "The Invoice this payment is applied to.",
28285
28711
  "format": "uuid"
28286
28712
  },
28287
28713
  "paymentId": {
28714
+ "minLength": 1,
28288
28715
  "type": "string",
28289
28716
  "description": "The Payment applied to the invoice.",
28290
28717
  "format": "uuid"
@@ -28295,6 +28722,21 @@
28295
28722
  "description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
28296
28723
  "nullable": true
28297
28724
  },
28725
+ "erpWriteStatus": {
28726
+ "allOf": [
28727
+ {
28728
+ "$ref": "#/components/schemas/ErpWriteStatuses"
28729
+ }
28730
+ ],
28731
+ "description": "Possible statuses for a record that supports ERP write.",
28732
+ "readOnly": true
28733
+ },
28734
+ "erpWriteStatusName": {
28735
+ "type": "string",
28736
+ "description": "The name of the ErpWriteStatus for this payment application",
28737
+ "nullable": true,
28738
+ "readOnly": true
28739
+ },
28298
28740
  "entryNumber": {
28299
28741
  "type": "integer",
28300
28742
  "description": "The entry number of this payment application. This is often a journal entry number, confirmation code,\r\nor other identifying field for this payment application.",
@@ -28306,7 +28748,6 @@
28306
28748
  "format": "date-time"
28307
28749
  },
28308
28750
  "paymentAppliedAmount": {
28309
- "minimum": 0,
28310
28751
  "type": "number",
28311
28752
  "description": "The total amount that was applied to this Invoice from the Payment.",
28312
28753
  "format": "double"
@@ -28342,6 +28783,13 @@
28342
28783
  "nullable": true,
28343
28784
  "readOnly": true
28344
28785
  },
28786
+ "sourceModifiedDate": {
28787
+ "type": "string",
28788
+ "description": "The date on which this record was last modified in source ERP.",
28789
+ "format": "date-time",
28790
+ "nullable": true,
28791
+ "readOnly": true
28792
+ },
28345
28793
  "payment": {
28346
28794
  "allOf": [
28347
28795
  {
@@ -28548,6 +28996,21 @@
28548
28996
  "description": "The Email address of the Customer.",
28549
28997
  "nullable": true
28550
28998
  },
28999
+ "erpWriteStatus": {
29000
+ "allOf": [
29001
+ {
29002
+ "$ref": "#/components/schemas/ErpWriteStatuses"
29003
+ }
29004
+ ],
29005
+ "description": "Possible statuses for a record that supports ERP write.",
29006
+ "readOnly": true
29007
+ },
29008
+ "erpWriteStatusName": {
29009
+ "type": "string",
29010
+ "description": "The name of the ErpWriteStatus for this payment",
29011
+ "nullable": true,
29012
+ "readOnly": true
29013
+ },
28551
29014
  "currencyCode": {
28552
29015
  "maxLength": 3,
28553
29016
  "minLength": 0,
@@ -28758,6 +29221,21 @@
28758
29221
  "description": "The unique ID of this record as it was known in its originating financial system.\r\n \r\nIf this company record was imported from a financial system, it will have the value `ErpKey`\r\nset to the original primary key number of the record as it was known in the originating financial\r\nsystem. If this record was not imported, this value will be `null`.\r\n \r\nFor more information, see [Identity Columns](https://developer.lockstep.io/docs/identity-columns).",
28759
29222
  "nullable": true
28760
29223
  },
29224
+ "erpWriteStatus": {
29225
+ "allOf": [
29226
+ {
29227
+ "$ref": "#/components/schemas/ErpWriteStatuses"
29228
+ }
29229
+ ],
29230
+ "description": "Possible statuses for a record that supports ERP write.",
29231
+ "readOnly": true
29232
+ },
29233
+ "erpWriteStatusName": {
29234
+ "type": "string",
29235
+ "description": "The name of the ErpWriteStatus for this Payment",
29236
+ "nullable": true,
29237
+ "readOnly": true
29238
+ },
28761
29239
  "paymentType": {
28762
29240
  "maxLength": 20,
28763
29241
  "minLength": 1,
@@ -28794,13 +29272,11 @@
28794
29272
  "format": "date"
28795
29273
  },
28796
29274
  "paymentAmount": {
28797
- "minimum": 0,
28798
29275
  "type": "number",
28799
29276
  "description": "Total amount of this payment in it's received currency.",
28800
29277
  "format": "double"
28801
29278
  },
28802
29279
  "unappliedAmount": {
28803
- "minimum": 0,
28804
29280
  "type": "number",
28805
29281
  "description": "Unapplied balance of this payment in it's received currency. If this amount is nonzero, the field `IsOpen` will be true.",
28806
29282
  "format": "double"
@@ -28811,6 +29287,11 @@
28811
29287
  "description": "The ISO 4217 currency code for this payment.\r\n \r\nFor a list of ISO 4217 currency codes, see [Query Currencies](https://developer.lockstep.io/reference/get_api-v1-definitions-currencies).",
28812
29288
  "nullable": true
28813
29289
  },
29290
+ "bankAccountId": {
29291
+ "type": "string",
29292
+ "description": "The Bank account id for the company to which this payment belongs.",
29293
+ "nullable": true
29294
+ },
28814
29295
  "referenceCode": {
28815
29296
  "maxLength": 100,
28816
29297
  "type": "string",
@@ -28864,13 +29345,11 @@
28864
29345
  "format": "double"
28865
29346
  },
28866
29347
  "baseCurrencyPaymentAmount": {
28867
- "minimum": 0,
28868
29348
  "type": "number",
28869
29349
  "description": "Total amount of this payment in the group's base currency.",
28870
29350
  "format": "double"
28871
29351
  },
28872
29352
  "baseCurrencyUnappliedAmount": {
28873
- "minimum": 0,
28874
29353
  "type": "number",
28875
29354
  "description": "Unapplied balance of this payment in the group's base currency. If this amount is nonzero, the field `IsOpen` will be true.",
28876
29355
  "format": "double"
@@ -28881,6 +29360,13 @@
28881
29360
  "nullable": true,
28882
29361
  "readOnly": true
28883
29362
  },
29363
+ "sourceModifiedDate": {
29364
+ "type": "string",
29365
+ "description": "The date on which this record was last modified in source ERP.",
29366
+ "format": "date-time",
29367
+ "nullable": true,
29368
+ "readOnly": true
29369
+ },
28884
29370
  "applications": {
28885
29371
  "type": "array",
28886
29372
  "items": {
@@ -29463,6 +29949,11 @@
29463
29949
  "type": "number",
29464
29950
  "description": "Unapplied balance of this payment in the erp's base currency. If this amount is nonzero, the field `IsOpen` will be true.",
29465
29951
  "format": "double"
29952
+ },
29953
+ "bankAccountId": {
29954
+ "type": "string",
29955
+ "description": "Bank account id for the payment.",
29956
+ "nullable": true
29466
29957
  }
29467
29958
  },
29468
29959
  "additionalProperties": false,
@@ -29979,6 +30470,7 @@
29979
30470
  },
29980
30471
  "country": {
29981
30472
  "maxLength": 3,
30473
+ "minLength": 3,
29982
30474
  "type": "string",
29983
30475
  "description": "Country (based on 3-char ISO/DI-3166 country code)",
29984
30476
  "nullable": true
@@ -30191,6 +30683,47 @@
30191
30683
  "additionalProperties": false,
30192
30684
  "description": "Service Fabric Enroll Response"
30193
30685
  },
30686
+ "SfNotification": {
30687
+ "type": "object",
30688
+ "properties": {
30689
+ "id": {
30690
+ "type": "string",
30691
+ "description": "Notification ID",
30692
+ "format": "uuid"
30693
+ },
30694
+ "source": {
30695
+ "type": "string",
30696
+ "description": "Source of the Notification"
30697
+ },
30698
+ "specVersion": {
30699
+ "type": "string",
30700
+ "description": "Version of Notification"
30701
+ },
30702
+ "type": {
30703
+ "type": "string",
30704
+ "description": "Describes event from Source"
30705
+ },
30706
+ "subject": {
30707
+ "type": "string",
30708
+ "description": "The ID of the type in question (ex. NewPayment type would have the subject be a PaymentId)",
30709
+ "format": "uuid"
30710
+ },
30711
+ "dataContentType": {
30712
+ "type": "string",
30713
+ "description": "RFC 2046 format content type"
30714
+ },
30715
+ "data": {
30716
+ "allOf": [
30717
+ {
30718
+ "$ref": "#/components/schemas/NotificationData"
30719
+ }
30720
+ ],
30721
+ "description": "Extra information about the event"
30722
+ }
30723
+ },
30724
+ "additionalProperties": false,
30725
+ "description": "An individual SF notification"
30726
+ },
30194
30727
  "SfOrganisationRequest": {
30195
30728
  "required": [
30196
30729
  "adminEmail",
@@ -30207,16 +30740,19 @@
30207
30740
  },
30208
30741
  "sageCrmId": {
30209
30742
  "maxLength": 255,
30743
+ "minLength": 1,
30210
30744
  "type": "string",
30211
30745
  "description": "This will be your GroupKey"
30212
30746
  },
30213
30747
  "primaryCountry": {
30214
30748
  "maxLength": 3,
30749
+ "minLength": 3,
30215
30750
  "type": "string",
30216
30751
  "description": "Your country in the ISO 3166-1 Alpha-3 format."
30217
30752
  },
30218
30753
  "adminEmail": {
30219
30754
  "maxLength": 255,
30755
+ "minLength": 1,
30220
30756
  "type": "string",
30221
30757
  "description": "Contact email of the app administrator.\r\nMake sure you specify a valid email - you'll need it later.",
30222
30758
  "format": "email"
@@ -30686,6 +31222,7 @@
30686
31222
  "type": "object",
30687
31223
  "properties": {
30688
31224
  "servicerId": {
31225
+ "maxLength": 36,
30689
31226
  "minLength": 1,
30690
31227
  "type": "string",
30691
31228
  "description": "The unique identifier of the servicer to integrate with."
@@ -31078,8 +31615,7 @@
31078
31615
  "errorCount": {
31079
31616
  "type": "integer",
31080
31617
  "description": "The number of errors encountered during sync",
31081
- "format": "int32",
31082
- "readOnly": true
31618
+ "format": "int32"
31083
31619
  },
31084
31620
  "errors": {
31085
31621
  "type": "object",
@@ -31092,6 +31628,18 @@
31092
31628
  },
31093
31629
  "description": "The errors encountered during sync keyed by ERP key",
31094
31630
  "nullable": true
31631
+ },
31632
+ "skips": {
31633
+ "type": "object",
31634
+ "additionalProperties": {
31635
+ "type": "array",
31636
+ "items": {
31637
+ "type": "string"
31638
+ },
31639
+ "nullable": true
31640
+ },
31641
+ "description": "The records that were skipped during sync keyed by ERP key",
31642
+ "nullable": true
31095
31643
  }
31096
31644
  },
31097
31645
  "additionalProperties": false,
@@ -31441,13 +31989,6 @@
31441
31989
  "TransactionModelTransactionSummaryTotalModelSummaryFetchResult": {
31442
31990
  "type": "object",
31443
31991
  "properties": {
31444
- "records": {
31445
- "type": "array",
31446
- "items": {
31447
- "$ref": "#/components/schemas/TransactionModel"
31448
- },
31449
- "nullable": true
31450
- },
31451
31992
  "totalCount": {
31452
31993
  "type": "integer",
31453
31994
  "format": "int32",
@@ -31463,6 +32004,13 @@
31463
32004
  "format": "int32",
31464
32005
  "nullable": true
31465
32006
  },
32007
+ "records": {
32008
+ "type": "array",
32009
+ "items": {
32010
+ "$ref": "#/components/schemas/TransactionModel"
32011
+ },
32012
+ "nullable": true
32013
+ },
31466
32014
  "summary": {
31467
32015
  "allOf": [
31468
32016
  {
@@ -31908,7 +32456,8 @@
31908
32456
  "type": "string",
31909
32457
  "description": "The name of the user who last modified the user account",
31910
32458
  "nullable": true,
31911
- "readOnly": true
32459
+ "readOnly": true,
32460
+ "deprecated": true
31912
32461
  },
31913
32462
  "b2CUserId": {
31914
32463
  "type": "string",
@@ -32685,13 +33234,6 @@
32685
33234
  "WebhookModelFetchResult": {
32686
33235
  "type": "object",
32687
33236
  "properties": {
32688
- "records": {
32689
- "type": "array",
32690
- "items": {
32691
- "$ref": "#/components/schemas/WebhookModel"
32692
- },
32693
- "nullable": true
32694
- },
32695
33237
  "totalCount": {
32696
33238
  "type": "integer",
32697
33239
  "format": "int32",
@@ -32706,6 +33248,13 @@
32706
33248
  "type": "integer",
32707
33249
  "format": "int32",
32708
33250
  "nullable": true
33251
+ },
33252
+ "records": {
33253
+ "type": "array",
33254
+ "items": {
33255
+ "$ref": "#/components/schemas/WebhookModel"
33256
+ },
33257
+ "nullable": true
32709
33258
  }
32710
33259
  },
32711
33260
  "additionalProperties": false