@capxul/observability 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +4 -0
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -274,6 +274,7 @@ declare const CAPXUL_OPERATIONS: {
|
|
|
274
274
|
readonly createOrganization: "identity.CreateOrganization";
|
|
275
275
|
readonly ensureAccount: "identity.EnsureAccount";
|
|
276
276
|
readonly leaveOrganization: "identity.LeaveOrganization";
|
|
277
|
+
readonly loadByAuthUserId: "identity.loadByAuthUserId";
|
|
277
278
|
readonly loadCurrent: "identity.loadCurrent";
|
|
278
279
|
readonly orgAt: "identity.OrgAt";
|
|
279
280
|
readonly orgFailed: "identity.OrgFailed";
|
|
@@ -431,6 +432,7 @@ declare const CAPXUL_OPERATIONS: {
|
|
|
431
432
|
readonly pay: "organizationPayments.pay";
|
|
432
433
|
readonly payBatch: "organizationPayments.payBatch";
|
|
433
434
|
readonly prepareExecution: "organizationPayments.prepareExecution";
|
|
435
|
+
readonly retry: "organizationPayments.retry";
|
|
434
436
|
};
|
|
435
437
|
readonly organizationSetup: {
|
|
436
438
|
readonly getProofReceipt: "organizationSetup.getProofReceipt";
|
|
@@ -449,6 +451,7 @@ declare const CAPXUL_OPERATIONS: {
|
|
|
449
451
|
readonly prepareExecution: "payments.prepareExecution";
|
|
450
452
|
readonly prepareLifecycleExecution: "payments.prepareLifecycleExecution";
|
|
451
453
|
readonly redirect: "payments.redirect";
|
|
454
|
+
readonly retry: "payments.retry";
|
|
452
455
|
readonly submitCommandExecution: "payments.submitCommandExecution";
|
|
453
456
|
readonly submitExecution: "payments.submitExecution";
|
|
454
457
|
};
|
|
@@ -532,6 +535,7 @@ declare const CAPXUL_OPERATIONS: {
|
|
|
532
535
|
readonly smartAccount: {
|
|
533
536
|
readonly claim: "smartAccount.claim";
|
|
534
537
|
readonly confirmDeployment: "smartAccount.confirmDeployment";
|
|
538
|
+
readonly loadByAuthUserId: "smartAccount.loadByAuthUserId";
|
|
535
539
|
readonly loadCurrent: "smartAccount.loadCurrent";
|
|
536
540
|
readonly provision: "smartAccount.provision";
|
|
537
541
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -178,6 +178,7 @@ const CAPXUL_OPERATIONS = {
|
|
|
178
178
|
createOrganization: "identity.CreateOrganization",
|
|
179
179
|
ensureAccount: "identity.EnsureAccount",
|
|
180
180
|
leaveOrganization: "identity.LeaveOrganization",
|
|
181
|
+
loadByAuthUserId: "identity.loadByAuthUserId",
|
|
181
182
|
loadCurrent: "identity.loadCurrent",
|
|
182
183
|
orgAt: "identity.OrgAt",
|
|
183
184
|
orgFailed: "identity.OrgFailed",
|
|
@@ -328,7 +329,8 @@ const CAPXUL_OPERATIONS = {
|
|
|
328
329
|
organizationPayments: {
|
|
329
330
|
pay: "organizationPayments.pay",
|
|
330
331
|
payBatch: "organizationPayments.payBatch",
|
|
331
|
-
prepareExecution: "organizationPayments.prepareExecution"
|
|
332
|
+
prepareExecution: "organizationPayments.prepareExecution",
|
|
333
|
+
retry: "organizationPayments.retry"
|
|
332
334
|
},
|
|
333
335
|
organizationSetup: { getProofReceipt: "organizationSetup.getProofReceipt" },
|
|
334
336
|
organizations: { detectAndAcceptPendingInvitations: "orgs.detectAndAcceptPendingInvitations" },
|
|
@@ -343,6 +345,7 @@ const CAPXUL_OPERATIONS = {
|
|
|
343
345
|
prepareExecution: "payments.prepareExecution",
|
|
344
346
|
prepareLifecycleExecution: "payments.prepareLifecycleExecution",
|
|
345
347
|
redirect: "payments.redirect",
|
|
348
|
+
retry: "payments.retry",
|
|
346
349
|
submitCommandExecution: "payments.submitCommandExecution",
|
|
347
350
|
submitExecution: "payments.submitExecution"
|
|
348
351
|
},
|
|
@@ -424,6 +427,7 @@ const CAPXUL_OPERATIONS = {
|
|
|
424
427
|
smartAccount: {
|
|
425
428
|
claim: "smartAccount.claim",
|
|
426
429
|
confirmDeployment: "smartAccount.confirmDeployment",
|
|
430
|
+
loadByAuthUserId: "smartAccount.loadByAuthUserId",
|
|
427
431
|
loadCurrent: "smartAccount.loadCurrent",
|
|
428
432
|
provision: "smartAccount.provision"
|
|
429
433
|
},
|