@pluto-budgeting/api-client 0.4.260 → 0.4.262
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/api/api.d.ts +279 -261
- package/dist/api/api.js +76 -0
- package/dist/api/api.js.map +1 -1
- package/dist/models/auth-lookup/auth-lookup-model.d.ts +25 -0
- package/dist/models/auth-lookup/auth-lookup-model.js +2 -0
- package/dist/models/auth-lookup/auth-lookup-model.js.map +1 -0
- package/dist/models/imports/import-models.d.ts +2 -0
- package/dist/models/organizations/create-organization-model.d.ts +11 -0
- package/dist/models/organizations/create-organization-model.js +2 -0
- package/dist/models/organizations/create-organization-model.js.map +1 -0
- package/dist/models/organizations/get-organization-params.d.ts +3 -0
- package/dist/models/organizations/get-organization-params.js +2 -0
- package/dist/models/organizations/get-organization-params.js.map +1 -0
- package/dist/models/organizations/list-organization-members-params.d.ts +6 -0
- package/dist/models/organizations/list-organization-members-params.js +2 -0
- package/dist/models/organizations/list-organization-members-params.js.map +1 -0
- package/dist/models/organizations/organization-member-model.d.ts +19 -0
- package/dist/models/organizations/organization-member-model.js +2 -0
- package/dist/models/organizations/organization-member-model.js.map +1 -0
- package/dist/models/organizations/organization-model.d.ts +20 -0
- package/dist/models/organizations/organization-model.js +2 -0
- package/dist/models/organizations/organization-model.js.map +1 -0
- package/dist/models/organizations/patch-organization-member-model.d.ts +7 -0
- package/dist/models/organizations/patch-organization-member-model.js +2 -0
- package/dist/models/organizations/patch-organization-member-model.js.map +1 -0
- package/dist/models/organizations/remove-organization-member-model.d.ts +6 -0
- package/dist/models/organizations/remove-organization-member-model.js +2 -0
- package/dist/models/organizations/remove-organization-member-model.js.map +1 -0
- package/dist/models/organizations/upsert-saml-configuration-model.d.ts +26 -0
- package/dist/models/organizations/upsert-saml-configuration-model.js +2 -0
- package/dist/models/organizations/upsert-saml-configuration-model.js.map +1 -0
- package/dist/models/saml/saml-configuration-model.d.ts +33 -0
- package/dist/models/saml/saml-configuration-model.js +2 -0
- package/dist/models/saml/saml-configuration-model.js.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remove-organization-member-model.js","sourceRoot":"","sources":["../../../src/models/organizations/remove-organization-member-model.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { SamlIdpType, SamlNameIdFormat, SamlSignatureAlgorithm } from '@pluto-budgeting/core/security/saml-configuration.js';
|
|
2
|
+
import type { OrganizationMemberRole } from '@pluto-budgeting/core/models/organizations/organization-member.js';
|
|
3
|
+
export interface UpsertSamlConfigurationModel {
|
|
4
|
+
organizationId: string;
|
|
5
|
+
displayName: string;
|
|
6
|
+
idpLogoUrl?: string;
|
|
7
|
+
idpType?: SamlIdpType;
|
|
8
|
+
domains: string[];
|
|
9
|
+
idpEntityId: string;
|
|
10
|
+
idpSsoUrl: string;
|
|
11
|
+
idpSloUrl?: string;
|
|
12
|
+
idpCertificates: string[];
|
|
13
|
+
attributeMappingEmail: string;
|
|
14
|
+
attributeMappingFirstName?: string;
|
|
15
|
+
attributeMappingLastName?: string;
|
|
16
|
+
attributeMappingDisplayName?: string;
|
|
17
|
+
signRequests?: boolean;
|
|
18
|
+
signatureAlgorithm?: SamlSignatureAlgorithm;
|
|
19
|
+
nameIdFormat?: SamlNameIdFormat;
|
|
20
|
+
wantAssertionsSigned?: boolean;
|
|
21
|
+
forceAuthn?: boolean;
|
|
22
|
+
allowedClockSkew?: number;
|
|
23
|
+
jitProvisioningEnabled?: boolean;
|
|
24
|
+
jitDefaultOrgRole?: OrganizationMemberRole;
|
|
25
|
+
isActive?: boolean;
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"upsert-saml-configuration-model.js","sourceRoot":"","sources":["../../../src/models/organizations/upsert-saml-configuration-model.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { SamlAttributeMapping, SamlDomainVerification, SamlIdpType, SamlNameIdFormat, SamlSignatureAlgorithm } from '@pluto-budgeting/core/security/saml-configuration.js';
|
|
2
|
+
import type { OrganizationMemberRole } from '@pluto-budgeting/core/models/organizations/organization-member.js';
|
|
3
|
+
export interface SamlConfigurationModel {
|
|
4
|
+
_id: string;
|
|
5
|
+
organizationId: string;
|
|
6
|
+
displayName: string;
|
|
7
|
+
idpLogoUrl?: string;
|
|
8
|
+
idpType?: SamlIdpType;
|
|
9
|
+
domains: string[];
|
|
10
|
+
domainVerification: SamlDomainVerification[];
|
|
11
|
+
idpEntityId: string;
|
|
12
|
+
idpSsoUrl: string;
|
|
13
|
+
idpSloUrl?: string;
|
|
14
|
+
idpCertificates: string[];
|
|
15
|
+
spEntityId: string;
|
|
16
|
+
spAcsUrl: string;
|
|
17
|
+
spMetadataUrl: string;
|
|
18
|
+
attributeMapping: SamlAttributeMapping;
|
|
19
|
+
signRequests: boolean;
|
|
20
|
+
signatureAlgorithm: SamlSignatureAlgorithm;
|
|
21
|
+
nameIdFormat: SamlNameIdFormat;
|
|
22
|
+
wantAssertionsSigned: boolean;
|
|
23
|
+
forceAuthn: boolean;
|
|
24
|
+
allowedClockSkew: number;
|
|
25
|
+
jitProvisioningEnabled: boolean;
|
|
26
|
+
jitDefaultOrgRole: OrganizationMemberRole;
|
|
27
|
+
isActive: boolean;
|
|
28
|
+
isVerified: boolean;
|
|
29
|
+
lastTestedAt?: string;
|
|
30
|
+
lastTestedSuccess?: boolean;
|
|
31
|
+
createdOn: string;
|
|
32
|
+
updatedOn: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"saml-configuration-model.js","sourceRoot":"","sources":["../../../src/models/saml/saml-configuration-model.ts"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pluto-budgeting/api-client",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.262",
|
|
4
4
|
"description": "Models and methods to access the Pluto Budgeting API via Redux Toolkit Query",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
30
30
|
"@typescript-eslint/parser": "^8.56.1",
|
|
31
31
|
"qs": "^6.15.0",
|
|
32
|
-
"@pluto-budgeting/core": "^0.4.
|
|
32
|
+
"@pluto-budgeting/core": "^0.4.262"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/qs": "^6.14.0"
|