@parra/parra-js-sdk 0.3.207 → 0.3.209
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/ParraAPI.d.ts +8 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1925,6 +1925,7 @@ export interface Application {
|
|
|
1925
1925
|
ios?: ApplicationIosConfig | null;
|
|
1926
1926
|
}
|
|
1927
1927
|
export interface CreateApplicationRequestBody {
|
|
1928
|
+
context?: string | null;
|
|
1928
1929
|
name: string;
|
|
1929
1930
|
description?: string | null;
|
|
1930
1931
|
is_new_project: boolean;
|
|
@@ -1959,6 +1960,7 @@ export declare enum TenantOnboardingGoal {
|
|
|
1959
1960
|
}
|
|
1960
1961
|
export interface TenantOnboardingApplicationIntent {
|
|
1961
1962
|
skipped?: boolean | null;
|
|
1963
|
+
application_id?: string | null;
|
|
1962
1964
|
intent?: string | null;
|
|
1963
1965
|
intent_other_description?: string | null;
|
|
1964
1966
|
should_notify?: boolean | null;
|
|
@@ -1968,12 +1970,16 @@ export interface TenantOnboardingApplicationIntent {
|
|
|
1968
1970
|
export interface TenantOnboardingDomainIntent {
|
|
1969
1971
|
skipped?: boolean | null;
|
|
1970
1972
|
}
|
|
1973
|
+
export interface TenantOnboardingIntegrationIntent {
|
|
1974
|
+
complete?: boolean | null;
|
|
1975
|
+
skipped?: boolean | null;
|
|
1976
|
+
}
|
|
1971
1977
|
export interface TenantOnboarding {
|
|
1972
1978
|
skipped?: boolean | null;
|
|
1973
1979
|
goal?: TenantOnboardingGoal | null;
|
|
1974
1980
|
application_intent?: TenantOnboardingApplicationIntent | null;
|
|
1975
1981
|
domain?: TenantOnboardingDomainIntent | null;
|
|
1976
|
-
|
|
1982
|
+
integration?: TenantOnboardingIntegrationIntent | null;
|
|
1977
1983
|
}
|
|
1978
1984
|
export interface TenantMetrics {
|
|
1979
1985
|
application_count: number;
|
|
@@ -2334,6 +2340,7 @@ export interface UpdateTenantRequestBody {
|
|
|
2334
2340
|
onboarding_application_intent_app_store_connect_setup?: boolean | null;
|
|
2335
2341
|
onboarding_application_intent_app_store_connect_skipped?: boolean | null;
|
|
2336
2342
|
onboarding_integration_complete?: boolean | null;
|
|
2343
|
+
onboarding_integration_skipped?: boolean | null;
|
|
2337
2344
|
}
|
|
2338
2345
|
export interface CreateTenantForUserRequestBody {
|
|
2339
2346
|
name: string;
|